diff --git a/ChangeLog b/ChangeLog index a6a10c45c..0ec0758c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-08-05 Tor Lillqvist + + * gtk/updateiconcache.c (write_bucket): Enclose ?: expression + with parens so cast covers all of it. + 2008-08-04 Matthias Clasen * gtk/gtksettings.c: Improve a setting nick: 'aureal' is not really diff --git a/gtk/updateiconcache.c b/gtk/updateiconcache.c index 0f5577a25..f61291ef1 100644 --- a/gtk/updateiconcache.c +++ b/gtk/updateiconcache.c @@ -1201,7 +1201,7 @@ write_bucket (FILE *cache, HashNode *node, int *offset) } else { - if (!write_card32 (cache, (guint32) image->image_data ? image->image_data->offset : 0)) + if (!write_card32 (cache, (guint32) (image->image_data ? image->image_data->offset : 0))) return FALSE; }