From aaa49e3405e08bf12883f3ab3d89db0c73804c91 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Thu, 23 Jul 2015 17:30:40 -0400 Subject: [PATCH] termux-elf-cleaner.cpp: Use zu format specifier for size_t --- packages/termux-tools/termux-elf-cleaner.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/termux-tools/termux-elf-cleaner.cpp b/packages/termux-tools/termux-elf-cleaner.cpp index b760deab..a8dae756 100644 --- a/packages/termux-tools/termux-elf-cleaner.cpp +++ b/packages/termux-tools/termux-elf-cleaner.cpp @@ -23,14 +23,14 @@ template elf_file_size) { - fprintf(stderr, "ERROR: Elf header would end at %lu but file size only %lu\n", sizeof(ElfSectionHeaderType), elf_file_size); + fprintf(stderr, "ERROR: Elf header would end at %zu but file size only %zu\n", sizeof(ElfSectionHeaderType), elf_file_size); return false; } ElfHeaderType* elf_hdr = reinterpret_cast(bytes); size_t last_section_header_byte = elf_hdr->e_shoff + sizeof(ElfSectionHeaderType) * elf_hdr->e_shnum; if (last_section_header_byte > elf_file_size) { - fprintf(stderr, "ERROR: Section header would end at %lu but file size only %lu\n", last_section_header_byte, elf_file_size); + fprintf(stderr, "ERROR: Section header would end at %zu but file size only %zu\n", last_section_header_byte, elf_file_size); return false; } ElfSectionHeaderType* section_header_table = reinterpret_cast(bytes + elf_hdr->e_shoff); @@ -40,7 +40,7 @@ bool process_elf(uint8_t* bytes, size_t elf_file_size) if (section_header_entry->sh_type == SHT_DYNAMIC) { size_t const last_dynamic_section_byte = section_header_entry->sh_offset + section_header_entry->sh_size; if (last_dynamic_section_byte > elf_file_size) { - fprintf(stderr, "ERROR: Dynamic section would end at %lu but file size only %lu\n", last_dynamic_section_byte, elf_file_size); + fprintf(stderr, "ERROR: Dynamic section would end at %zu but file size only %zu\n", last_dynamic_section_byte, elf_file_size); return false; } -- 2.11.0