mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
tests: another format string fix
This commit is contained in:
parent
7f92448d45
commit
a7122331c5
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ Test(list, basics)
|
|||
for (size_t j = 0, i = 99; j < list_length(&l); j++) {
|
||||
void *k = list_at(&l, j);
|
||||
|
||||
cr_assert_eq(k, (void *) i, "Is %p, expected %p", i, k);
|
||||
cr_assert_eq(k, (void *) i, "Is %#zx, expected %p", i, k);
|
||||
i--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue