mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 13:23:00 +08:00
PR 6913
* dwarf.c (print_dwarf_vma): Don't call printf without format string.
This commit is contained in:
@ -186,7 +186,7 @@ print_dwarf_vma (dwarf_vma val, unsigned byte_size)
|
||||
snprintf (buff, sizeof (buff), "%16.16lx ", val);
|
||||
#endif
|
||||
|
||||
printf (buff + (byte_size == 4 ? 8 : 0));
|
||||
fputs (buff + (byte_size == 4 ? 8 : 0), stdout);
|
||||
}
|
||||
|
||||
static unsigned long int
|
||||
|
Reference in New Issue
Block a user