diff -r 9589185e4997 -r 89c2ab8d2ebf src/log.c --- a/src/log.c Mon Oct 17 05:32:33 2005 +0000 +++ b/src/log.c Mon Oct 17 05:50:30 2005 +0000 @@ -406,7 +406,8 @@ return (gint)b->type - (gint)a->type; } -guint log_set_hash(gconstpointer key) +static guint +log_set_hash(gconstpointer key) { const GaimLogSet *set = key; @@ -416,7 +417,8 @@ return g_int_hash((gint *)&set->type) + g_str_hash(set->name); } -gboolean log_set_equal(gconstpointer a, gconstpointer b) +static gboolean +log_set_equal(gconstpointer a, gconstpointer b) { /* I realize that the choices made for GList and GHashTable * make sense for those data types, but I wish the comparison @@ -424,7 +426,8 @@ return !gaim_log_set_compare(a, b); } -void log_add_log_set_to_hash(GHashTable *sets, GaimLogSet *set) +static void +log_add_log_set_to_hash(GHashTable *sets, GaimLogSet *set) { GaimLogSet *existing_set = g_hash_table_lookup(sets, set);