Add braces to appease gcc

-ftrack-macro-expansion=0 doesn't like if statements without braces when
evaluating indentation levels.
This commit is contained in:
Benjamin Otte
2016-08-25 23:01:28 +02:00
parent c8b301f1ea
commit 35c96c2c1f
3 changed files with 16 additions and 6 deletions

View File

@ -573,7 +573,9 @@ gtk_compose_table_serialize (GtkComposeTable *compose_table,
(long long) (p - contents), total_length); \
g_free (contents); \
if (count) \
*count = 0; \
{ \
*count = 0; \
} \
return NULL; \
}