Skip to content

Commit

Permalink
Fix column_mask unit test
Browse files Browse the repository at this point in the history
Compiling with arm raises a signed and unsigned comparison error.
  • Loading branch information
GeorgyKirichenko committed Jun 14, 2017
1 parent 821b14d commit 79638d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/column_mask.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ check_update_result(const struct tuple_template *original,
old, old_end, &actual_len, 1,
&column_mask);
fail_if(actual == NULL);
is(actual_len, new_end - new, "check result length");
is((int32_t)actual_len, new_end - new, "check result length");
is(memcmp(actual, new, actual_len), 0, "tuple update is correct");
is(column_mask, expected_mask, "column_mask is correct");

Expand Down

0 comments on commit 79638d4

Please sign in to comment.