Skip to content

Commit

Permalink
Broke macro and didn't check (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose authored Mar 25, 2020
1 parent df9d981 commit 6f0787f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/aws/testing/aws_test_harness.h
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ static int total_failures;
do { \
const uint8_t *assert_ex_p = (const uint8_t *)((cursor).ptr); \
size_t assert_ex_s = (cursor).len; \
const uint8_t *assert_got_p = aws_string_c_str(string); \
const uint8_t *assert_got_p = (const uint8_t *)aws_string_c_str(string); \
size_t assert_got_s = (string)->len; \
if (assert_ex_s == 0 && assert_got_s == 0) { \
break; \
Expand Down

0 comments on commit 6f0787f

Please sign in to comment.