aboutsummaryrefslogtreecommitdiff
path: root/bfd/elfcore.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2018-02-19 18:48:15 +1030
committerAlan Modra <amodra@gmail.com>2018-02-19 23:55:55 +1030
commit8979927ae719d1a16d2acd01a11cc17ed3c78dfb (patch)
tree71e7b7872ba8319f852d733b41ac73d31ec03ddd /bfd/elfcore.h
parent2dcf00ce6c001c42c89e6f6baace708b706994f2 (diff)
downloadgdb-8979927ae719d1a16d2acd01a11cc17ed3c78dfb.zip
gdb-8979927ae719d1a16d2acd01a11cc17ed3c78dfb.tar.gz
gdb-8979927ae719d1a16d2acd01a11cc17ed3c78dfb.tar.bz2
Don't use %ll
* dwarf2.c (read_section): Don't use 'll' format modifier. (find_abstract_instance): Likewise. * elfcore.h (elf_core_file_p): Likewise.
Diffstat (limited to 'bfd/elfcore.h')
-rw-r--r--bfd/elfcore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfcore.h b/bfd/elfcore.h
index e0b39a7..117a1b7 100644
--- a/bfd/elfcore.h
+++ b/bfd/elfcore.h
@@ -298,8 +298,8 @@ elf_core_file_p (bfd *abfd)
_bfd_error_handler
/* xgettext:c-format */
(_("warning: %pB is truncated: expected core file "
- "size >= %" PRIu64 ", found: %llu"),
- abfd, (uint64_t) high, (unsigned long long) statbuf.st_size);
+ "size >= %" PRIu64 ", found: %" PRIu64),
+ abfd, (uint64_t) high, (uint64_t) statbuf.st_size);
}
}
}