app: Convert some vars to guint so make bitwise operation unambiguous
Silences a GNU Clang warning.
This commit is contained in:
parent
0530069052
commit
3835167be6
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ gimp_colormap_editor_color_update (GimpColorDialog *dialog,
|
|||
{
|
||||
push_undo = TRUE;
|
||||
|
||||
if (state & gimp_get_toggle_behavior_mask ())
|
||||
if ((guint)state & (guint)gimp_get_toggle_behavior_mask ())
|
||||
gimp_context_set_background (image_editor->context, color);
|
||||
else
|
||||
gimp_context_set_foreground (image_editor->context, color);
|
||||
|
|
|
|||
Loading…
Reference in a new issue