changeset 25464:9bd43d30d49a

Fix a warning I caught about using %d for a gsize.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 15 Feb 2009 20:24:23 +0000
parents 43055addf135
children 3c96a644c665
files finch/libgnt/gntwm.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/finch/libgnt/gntwm.c	Sun Feb 15 20:22:30 2009 +0000
+++ b/finch/libgnt/gntwm.c	Sun Feb 15 20:24:23 2009 +0000
@@ -353,7 +353,8 @@
 				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);
 		}