summaryrefslogtreecommitdiffstats
path: root/tests/asm-tst7.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/asm-tst7.c')
-rw-r--r--tests/asm-tst7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/asm-tst7.c b/tests/asm-tst7.c
index a875eb4c..00cb2bfe 100644
--- a/tests/asm-tst7.c
+++ b/tests/asm-tst7.c
@@ -102,7 +102,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;
}
@@ -110,7 +110,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;