comparison finch/libgnt/gntbindable.c @ 22007:c38d72677c8a

Probe for -Wstrict-prototypes to get some more warnings. I then cleaned up the existing warnings. I removed a handful of dead code and cleaned up a couple of things that I stumbled across.
author Richard Laager <rlaager@wiktel.com>
date Thu, 03 Jan 2008 04:57:40 +0000
parents 44b4e8bd759b
children 24dfef623410
comparison
equal deleted inserted replaced
21975:c7c5e2ff2b04 22007:c38d72677c8a
43 char * name; /* The name of the action */ 43 char * name; /* The name of the action */
44 GList * params; /* The list of paramaters */ 44 GList * params; /* The list of paramaters */
45 } rebind_info; 45 } rebind_info;
46 46
47 static void 47 static void
48 gnt_bindable_free_rebind_info() 48 gnt_bindable_free_rebind_info(void)
49 { 49 {
50 g_free(rebind_info.name); 50 g_free(rebind_info.name);
51 g_free(rebind_info.keys); 51 g_free(rebind_info.keys);
52 g_free(rebind_info.okeys); 52 g_free(rebind_info.okeys);
53 } 53 }