summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2009-10-20 04:06:05 +0200
committerJavier Jardón <jjardon@gnome.org>2009-10-20 20:44:48 +0200
commit8e70bc988b5fc7589ee949be2f8f768bfd1a173d (patch)
tree820e2e69048509c867f15087d4947edc0b46bd16 /gdk-pixbuf
parent33f53e1d0460b26f5dd4713555cc553dbef4847a (diff)
downloadgdk-pixbuf-8e70bc988b5fc7589ee949be2f8f768bfd1a173d.tar.gz
Fix a compilation warning
Use parenthesis in a expression with "&" operator
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/io-ani.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-ani.c b/gdk-pixbuf/io-ani.c
index 389b2c599..0f4286852 100644
--- a/gdk-pixbuf/io-ani.c
+++ b/gdk-pixbuf/io-ani.c
@@ -329,7 +329,7 @@ ani_load_chunk (AniLoaderContext *context, GError **error)
(context->Flags & 0x2) != 0,
(context->Flags & 0x1) != 0);
#endif
- if (!context->Flags & 0x2)
+ if (!(context->Flags & 0x2))
{
g_set_error_literal (error,
GDK_PIXBUF_ERROR,