Skip to content

Commit

Permalink
Fix SameBytes predicate definition for GCC 13
Browse files Browse the repository at this point in the history
  • Loading branch information
pokusew committed Jan 18, 2025
1 parent 61f00d5 commit d872df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/ctap_parse_client_pin_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ testing::AssertionResult SameBytes(
const char *actual_expr,
const char *expected_expr,
size_t size,
const uint8_t actual[size],
const uint8_t expected[size]
const uint8_t *actual,
const uint8_t *expected
) {
for (int i = 0; i < size; ++i) {
if (actual[i] != expected[i]) {
Expand Down

0 comments on commit d872df3

Please sign in to comment.