From 0b998d0cf01d497e998c17c251b241510ba38f3e Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Wed, 9 Aug 2017 02:11:00 -0700 Subject: Declare proc_cmp() as static --- modules/devices.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/devices.c b/modules/devices.c index 094f9ec3..8f1b19e3 100644 --- a/modules/devices.c +++ b/modules/devices.c @@ -126,7 +126,7 @@ gchar *lginterval = NULL; #include -gint proc_cmp (Processor *a, Processor *b) { +static gint proc_cmp(Processor *a, Processor *b) { return g_strcmp0(a->model_name, b->model_name); } -- cgit v1.2.3