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.
This commit is contained in:
Alan Modra
2018-02-19 18:48:15 +10:30
parent 2dcf00ce6c
commit 8979927ae7
3 changed files with 12 additions and 6 deletions

View File

@@ -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);
}
}
}