Skip to content

Commit

Permalink
fixup! tests: 64 bit compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Dec 7, 2023
1 parent b3f7fe2 commit 7d492b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sys/events/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static void callback(event_t *arg)
order++;
expect(order == 4);
expect(arg == &event);
printf("triggered 0x%08" PRIuPTR "\n", (uintptr_t)arg);
printf("triggered 0x%08" PRIxPTR "\n", (uintptr_t)arg);
}

typedef struct {
Expand Down

0 comments on commit 7d492b3

Please sign in to comment.