1
0
Fork 0
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:
Steffen Vogel 2017-06-17 03:46:42 +02:00
parent 7f92448d45
commit a7122331c5

View file

@ -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--;
}