diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-06-05 13:34:36 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2019-06-05 13:34:36 +0100 |
commit | 62d8e3b73139b159963025b5568ec1f5051450f0 (patch) | |
tree | 0d7e6d247505e9f21093be16e7f2386c2736289d /libctf/ctf-archive.c | |
parent | 0088ba596bba2e0b94139f1c2c4f5875848edbd6 (diff) | |
download | binutils-62d8e3b73139b159963025b5568ec1f5051450f0.zip binutils-62d8e3b73139b159963025b5568ec1f5051450f0.tar.gz binutils-62d8e3b73139b159963025b5568ec1f5051450f0.tar.bz2 |
libctf: eschew %zi format specifier
Too many platforms don't support it, and we can always safely use %lu or
%li anyway, because the only uses are in debugging output.
libctf/
* ctf-archive.c (ctf_arc_write): Eschew %zi format specifier.
(ctf_arc_open_by_offset): Likewise.
* ctf-create.c (ctf_add_type): Likewise.
Diffstat (limited to 'libctf/ctf-archive.c')
-rw-r--r-- | libctf/ctf-archive.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libctf/ctf-archive.c b/libctf/ctf-archive.c index 90cd020..2414493 100644 --- a/libctf/ctf-archive.c +++ b/libctf/ctf-archive.c @@ -68,7 +68,8 @@ ctf_arc_write (const char *file, ctf_file_t ** ctf_files, size_t ctf_file_cnt, off_t nameoffs; struct ctf_archive_modent *modent; - ctf_dprintf ("Writing archive %s with %zi files\n", file, ctf_file_cnt); + ctf_dprintf ("Writing archive %s with %lu files\n", file, + (unsigned long) ctf_file_cnt); if ((fd = open (file, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0666)) < 0) { @@ -82,7 +83,7 @@ ctf_arc_write (const char *file, ctf_file_t ** ctf_files, size_t ctf_file_cnt, uint64_t's. */ headersz = sizeof (struct ctf_archive) + (ctf_file_cnt * sizeof (uint64_t) * 2); - ctf_dprintf ("headersz is %zi\n", headersz); + ctf_dprintf ("headersz is %lu\n", (unsigned long) headersz); /* From now on we work in two pieces: an mmap()ed region from zero up to the headersz, and a region updated via write() starting after that, containing @@ -510,7 +511,7 @@ ctf_arc_open_by_offset (const struct ctf_archive *arc, ctf_sect_t ctfsect; ctf_file_t *fp; - ctf_dprintf ("ctf_arc_open_by_offset(%zi): opening\n", offset); + ctf_dprintf ("ctf_arc_open_by_offset(%lu): opening\n", (unsigned long) offset); memset (&ctfsect, 0, sizeof (ctf_sect_t)); |