# HG changeset patch # User John Bailey # Date 1234729463 0 # Node ID 9bd43d30d49af1179806602f5274696b737185b0 # Parent 43055addf13500b3514322ffc96a0253f334045a Fix a warning I caught about using %d for a gsize. diff -r 43055addf135 -r 9bd43d30d49a finch/libgnt/gntwm.c --- 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); }