bitmask: Trivial formatting fix

This commit is contained in:
Matthias Clasen 2015-09-11 09:06:46 -04:00
parent c86f0b1b23
commit 4654fa6efe

View File

@ -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);
}