mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
Fix a compilation warning
Use parenthesis in a expression with "&" operator
This commit is contained in:
parent
33f53e1d04
commit
8e70bc988b
@ -329,7 +329,7 @@ ani_load_chunk (AniLoaderContext *context, GError **error)
|
|||||||
(context->Flags & 0x2) != 0,
|
(context->Flags & 0x2) != 0,
|
||||||
(context->Flags & 0x1) != 0);
|
(context->Flags & 0x1) != 0);
|
||||||
#endif
|
#endif
|
||||||
if (!context->Flags & 0x2)
|
if (!(context->Flags & 0x2))
|
||||||
{
|
{
|
||||||
g_set_error_literal (error,
|
g_set_error_literal (error,
|
||||||
GDK_PIXBUF_ERROR,
|
GDK_PIXBUF_ERROR,
|
||||||
|
Loading…
Reference in New Issue
Block a user