make equ_fct and hash_fct static
[lttv.git] / 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.02665 seconds and 4 git commands to generate.