pidgin: d14bdbd9: Fix a warning I caught about using %d fo...
rekkanoryo at pidgin.im
rekkanoryo at pidgin.im
Sun Feb 15 17:00:53 EST 2009
-----------------------------------------------------------------
Revision: d14bdbd9a86ccd07f235ae41de26aed7c61a1e84
Ancestor: 3c0fae0099a5ab71fe5e97a09a7d16b24eb66ad4
Author: rekkanoryo at pidgin.im
Date: 2009-02-15T20:24:23
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/d14bdbd9a86ccd07f235ae41de26aed7c61a1e84
Modified files:
finch/libgnt/gntwm.c
ChangeLog:
Fix a warning I caught about using %d for a gsize.
-------------- next part --------------
============================================================
--- finch/libgnt/gntwm.c 0483c8f03b832821b34794311444bdb496e41cb4
+++ finch/libgnt/gntwm.c c6871df7990dfc9a49619b0f111ba336e336840a
@@ -353,7 +353,8 @@ read_window_positions(GntWM *wm)
p->y = y;
g_hash_table_replace(wm->positions, g_strdup(title + 1), p);
} else {
- gnt_warning("Invalid number of arguments (%d) for positioning a window.", l);
+ gnt_warning("Invalid number of arguments (%" G_GSIZE_FORMAT
+ ") for positioning a window.", l);
}
g_strfreev(coords);
}
More information about the Commits
mailing list