From: compudj Date: Thu, 12 Aug 2004 13:48:34 +0000 (+0000) Subject: make equ_fct and hash_fct static X-Git-Tag: v0.12.20~2778 X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=1972aa36a6ee9a49565aedcb47eb0dd5c3bc97bf;p=lttv.git make equ_fct and hash_fct static git-svn-id: http://ltt.polymtl.ca/svn@711 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c index 1cc7f139..db29cb8d 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c @@ -233,12 +233,12 @@ gint process_sort_func ( GtkTreeModel *model, } -guint hash_fct(gconstpointer key) +static guint hash_fct(gconstpointer key) { return ((ProcessInfo*)key)->pid; } -gboolean equ_fct(gconstpointer a, gconstpointer b) +static gboolean equ_fct(gconstpointer a, gconstpointer b) { const ProcessInfo *pa = (const ProcessInfo*)a; const ProcessInfo *pb = (const ProcessInfo*)b;