From 65f1ec1d5eb13fab3b953da8d5e8092175e04149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Mon, 25 Feb 2019 18:16:26 +0100 Subject: [PATCH] rootston: Make add_{switch,binding}_config static --- rootston/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootston/config.c b/rootston/config.c index d9376091..314af264 100644 --- a/rootston/config.c +++ b/rootston/config.c @@ -164,7 +164,7 @@ static bool parse_modeline(const char *s, drmModeModeInfo *mode) { return true; } -void add_binding_config(struct wl_list *bindings, const char* combination, +static void add_binding_config(struct wl_list *bindings, const char* combination, const char* command) { struct roots_binding_config *bc = calloc(1, sizeof(struct roots_binding_config)); @@ -201,7 +201,7 @@ void add_binding_config(struct wl_list *bindings, const char* combination, } } -void add_switch_config(struct wl_list *switches, const char *switch_name, +static void add_switch_config(struct wl_list *switches, const char *switch_name, const char *action, const char *command) { struct roots_switch_config *sc = calloc(1, sizeof(struct roots_switch_config));