aboutsummaryrefslogtreecommitdiff
path: root/libctf
diff options
context:
space:
mode:
authorA. Wilcox <awilfox@adelielinux.org>2024-06-11 21:40:00 +0000
committerAlan Modra <amodra@gmail.com>2024-06-12 13:16:27 +0930
commit7065d0a33f732b7f0527f83ec0a352634b2d1ace (patch)
tree87a104fa3d326f522b376138a212c6f72e3bfed9 /libctf
parentb7641ae1afaa39e31e70114f0ee9a295820709aa (diff)
downloadgdb-7065d0a33f732b7f0527f83ec0a352634b2d1ace.zip
gdb-7065d0a33f732b7f0527f83ec0a352634b2d1ace.tar.gz
gdb-7065d0a33f732b7f0527f83ec0a352634b2d1ace.tar.bz2
PR 31882 libctf: test suite incorrect format specifiers
Diffstat (limited to 'libctf')
-rw-r--r--libctf/testsuite/libctf-lookup/struct-iteration.c2
-rw-r--r--libctf/testsuite/libctf-lookup/unnamed-field-info.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libctf/testsuite/libctf-lookup/struct-iteration.c b/libctf/testsuite/libctf-lookup/struct-iteration.c
index 005aba1..b240864 100644
--- a/libctf/testsuite/libctf-lookup/struct-iteration.c
+++ b/libctf/testsuite/libctf-lookup/struct-iteration.c
@@ -53,7 +53,7 @@ main (int argc, char *argv[])
{
char *type_name = ctf_type_aname (fp, membtype);
- printf ("next test: %s, offset %lx, has type %lx/%s\n",
+ printf ("next test: %s, offset %zx, has type %lx/%s\n",
name, offset, membtype, type_name);
free (type_name);
}
diff --git a/libctf/testsuite/libctf-lookup/unnamed-field-info.c b/libctf/testsuite/libctf-lookup/unnamed-field-info.c
index 9abe8b0..039df64 100644
--- a/libctf/testsuite/libctf-lookup/unnamed-field-info.c
+++ b/libctf/testsuite/libctf-lookup/unnamed-field-info.c
@@ -16,7 +16,7 @@ verify_offsetof_matching (ctf_dict_t *fp, ctf_id_t type, const char *name, size_
goto err;
if (mi.ctm_offset != offset * 8)
- fprintf (stderr, "field %s inconsistency: offsetof() says %zi bits, CTF says %zi\n",
+ fprintf (stderr, "field %s inconsistency: offsetof() says %zi bits, CTF says %li\n",
name, offset * 8, mi.ctm_offset);
return;