diff options
author | Victor van den Elzen <victor.vde@gmail.com> | 2009-08-11 02:10:16 +0200 |
---|---|---|
committer | Victor van den Elzen <victor.vde@gmail.com> | 2009-08-11 02:43:41 +0200 |
commit | 15bb2330368783724cf526dfec5c02d028bd5b98 (patch) | |
tree | fa653bd47ff1a50eb5e0264cadf158413e3b9ca0 /output/outelf32.c | |
parent | 5a49e7c578378308c4e866313ea08c65e6869a06 (diff) | |
download | nasm-15bb2330368783724cf526dfec5c02d028bd5b98.tar.gz nasm-15bb2330368783724cf526dfec5c02d028bd5b98.tar.bz2 nasm-15bb2330368783724cf526dfec5c02d028bd5b98.zip |
Fix some format strings for nasm_error
Added a format attribute to nasm_error (only for GCC) and
used the resulting warnings to fix some format strings.
Diffstat (limited to 'output/outelf32.c')
-rw-r--r-- | output/outelf32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outelf32.c b/output/outelf32.c index 7dce165..6902bea 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -461,8 +461,8 @@ static void elf_deflabel(char *name, int32_t segment, int64_t offset, bool special_used = false; #if defined(DEBUG) && DEBUG>2 - fprintf(stderr, - " elf_deflabel: %s, seg=%ld, off=%ld, is_global=%d, %s\n", + nasm_error(ERR_DEBUG, + " elf_deflabel: %s, seg=%"PRIx32", off=%"PRIx64", is_global=%d, %s\n", name, segment, offset, is_global, special); #endif if (name[0] == '.' && name[1] == '.' && name[2] != '@') { |