summaryrefslogtreecommitdiff
path: root/gtk/gtkallocatedbitmask.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-09-11 09:06:46 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-09-12 11:24:37 -0400
commit4654fa6efe539dcaae127beb49e569df91f5c3a4 (patch)
tree6babf750818ce936c9b6c7033d556265a00ddcfc /gtk/gtkallocatedbitmask.c
parentc86f0b1b237bf8ccc47a5a5399a8acc55e0eb1fd (diff)
downloadgtk+-4654fa6efe539dcaae127beb49e569df91f5c3a4.tar.gz
bitmask: Trivial formatting fix
Diffstat (limited to 'gtk/gtkallocatedbitmask.c')
-rw-r--r--gtk/gtkallocatedbitmask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkallocatedbitmask.c b/gtk/gtkallocatedbitmask.c
index 0950d4362d..f95e312ae9 100644
--- a/gtk/gtkallocatedbitmask.c
+++ b/gtk/gtkallocatedbitmask.c
@@ -313,7 +313,7 @@ _gtk_allocated_bitmask_invert_range (GtkBitmask *mask,
mask->data[i] ^= ALL_BITS;
mask->data[start_word] ^= (((VALUE_TYPE) 1) << start_bit) - 1;
if (end_bit != 63)
- mask->data[end_word] ^= ALL_BITS << (end_bit + 1);
+ mask->data[end_word] ^= ALL_BITS << (end_bit + 1);
return gtk_allocated_bitmask_shrink (mask);
}