diff options
Diffstat (limited to 'tests/asm-tst8.c')
-rw-r--r-- | tests/asm-tst8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/asm-tst8.c b/tests/asm-tst8.c index 597c5cb3..4fb0d998 100644 --- a/tests/asm-tst8.c +++ b/tests/asm-tst8.c @@ -103,7 +103,7 @@ main (void) scn = elf_getscn (elf, cnt); if (scn == NULL) { - printf ("cannot get section %Zd: %s\n", cnt, elf_errmsg (-1)); + printf ("cannot get section %zd: %s\n", cnt, elf_errmsg (-1)); result = 1; continue; } @@ -111,7 +111,7 @@ main (void) shdr = gelf_getshdr (scn, &shdr_mem); if (shdr == NULL) { - printf ("cannot get section header for section %Zd: %s\n", + printf ("cannot get section header for section %zd: %s\n", cnt, elf_errmsg (-1)); result = 1; continue; |