Skip to content

Commit

Permalink
Silence op precedence warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
virtualsue committed Mar 4, 2015
1 parent f370a5c commit dbb83b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/6model/serialization.c
Expand Up @@ -324,7 +324,7 @@ void MVM_serialization_write_varint(MVMThreadContext *tc, MVMSerializationWriter
offset = *(writer->cur_write_offset);

while (--count) {
buffer[offset++] = value & 0x7F | 0x80;
buffer[offset++] = (value & 0x7F) | 0x80;
value = value >> 7;
}
if (storage_needed == 9) {
Expand Down

0 comments on commit dbb83b2

Please sign in to comment.