make equ_fct and hash_fct static
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 12 Aug 2004 13:48:34 +0000 (13:48 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 12 Aug 2004 13:48:34 +0000 (13:48 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@711 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c

index 1cc7f1392b965dfd6cb8629cc02861b53847fd1f..db29cb8dcdf113abd05a34f30e9675d8677e8060 100644 (file)
@@ -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;
This page took 0.024152 seconds and 4 git commands to generate.