composetable: Fix gcc warnings
This commit is contained in:
parent
be6f65a08e
commit
9708ecdd5b
@ -569,8 +569,8 @@ gtk_compose_table_serialize (GtkComposeTable *compose_table,
|
|||||||
p += length; \
|
p += length; \
|
||||||
if (p - contents > total_length) \
|
if (p - contents > total_length) \
|
||||||
{ \
|
{ \
|
||||||
g_warning ("data size %ld is bigger than %ld", \
|
g_warning ("data size %lld is bigger than %" G_GSIZE_FORMAT, \
|
||||||
p - contents, total_length); \
|
(long long) (p - contents), total_length); \
|
||||||
g_free (contents); \
|
g_free (contents); \
|
||||||
if (count) \
|
if (count) \
|
||||||
*count = 0; \
|
*count = 0; \
|
||||||
|
Loading…
Reference in New Issue
Block a user