From: <the...@us...> - 2006-12-10 09:10:03
|
Revision: 17943 http://svn.sourceforge.net/gaim/?rev=17943&view=rev Author: thekingant Date: 2006-12-10 01:09:39 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Get rid of two minor compile warnings Modified Paths: -------------- trunk/console/libgnt/gntwm.c Modified: trunk/console/libgnt/gntwm.c =================================================================== --- trunk/console/libgnt/gntwm.c 2006-12-10 09:05:40 UTC (rev 17942) +++ trunk/console/libgnt/gntwm.c 2006-12-10 09:09:39 UTC (rev 17943) @@ -191,7 +191,7 @@ char *filename = g_build_filename(g_get_home_dir(), ".gntpositions", NULL); GError *error = NULL; char **keys; - int nk; + gsize nk; if (!g_key_file_load_from_file(gfile, filename, G_KEY_FILE_NONE, &error)) { g_printerr("GntWM: %s\n", error->message); @@ -208,7 +208,7 @@ } else { while (nk--) { char *title = keys[nk]; - int l; + gsize l; char **coords = g_key_file_get_string_list(gfile, "positions", title, &l, NULL); if (l == 2) { int x = atoi(coords[0]); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |