Skip to content

Commit

Permalink
Merge pull request #179 from virtualsue/master
Browse files Browse the repository at this point in the history
Silence op precedence warning on clang
  • Loading branch information
jnthn committed Mar 4, 2015
2 parents f370a5c + dbb83b2 commit 95ff54f
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 95ff54f

Please sign in to comment.