From 1972aa36a6ee9a49565aedcb47eb0dd5c3bc97bf Mon Sep 17 00:00:00 2001 From: compudj Date: Thu, 12 Aug 2004 13:48:34 +0000 Subject: [PATCH] make equ_fct and hash_fct static git-svn-id: http://ltt.polymtl.ca/svn@711 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1