From: <sa...@us...> - 2006-10-28 20:08:08
|
Revision: 17608 http://svn.sourceforge.net/gaim/?rev=17608&view=rev Author: sadrul Date: 2006-10-28 13:06:33 -0700 (Sat, 28 Oct 2006) Log Message: ----------- More compile warning fixes Modified Paths: -------------- trunk/console/libgnt/gntstyle.c trunk/console/libgnt/wms/s.c Modified: trunk/console/libgnt/gntstyle.c =================================================================== --- trunk/console/libgnt/gntstyle.c 2006-10-28 20:05:27 UTC (rev 17607) +++ trunk/console/libgnt/gntstyle.c 2006-10-28 20:06:33 UTC (rev 17608) @@ -171,7 +171,7 @@ if (g_key_file_has_group(gkfile, name)) { - unsigned int len = 0; + gsize len = 0; char **keys; keys = g_key_file_get_keys(gkfile, name, &len, &error); @@ -225,7 +225,7 @@ if (g_key_file_has_group(gkfile, name)) { - unsigned int len = 0; + gsize len = 0; char **keys; keys = g_key_file_get_keys(gkfile, name, &len, &error); @@ -304,8 +304,8 @@ void gnt_style_read_configure_file(const char *filename) { #if GLIB_CHECK_VERSION(2,6,0) + GError *error = NULL; gkfile = g_key_file_new(); - GError *error = NULL; if (!g_key_file_load_from_file(gkfile, filename, G_KEY_FILE_NONE, &error)) { Modified: trunk/console/libgnt/wms/s.c =================================================================== --- trunk/console/libgnt/wms/s.c 2006-10-28 20:05:27 UTC (rev 17607) +++ trunk/console/libgnt/wms/s.c 2006-10-28 20:06:33 UTC (rev 17608) @@ -169,6 +169,7 @@ envelope_normal_window(window); } +void gntwm_init(GntWM *wm); void gntwm_init(GntWM *wm) { gwm = wm; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |