diff options
author | Alan Modra <amodra@gmail.com> | 2001-04-11 07:07:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-04-11 07:07:29 +0000 |
commit | 21211521db16ceda99ca6424dc1df29f0746aabd (patch) | |
tree | 8be90ae2df524e21ba2d149c7b890c28e099fc05 /binutils/nm.c | |
parent | c114dcd5b79c0b90f85f5484f22984d7cd6e8129 (diff) | |
download | gdb-21211521db16ceda99ca6424dc1df29f0746aabd.zip gdb-21211521db16ceda99ca6424dc1df29f0746aabd.tar.gz gdb-21211521db16ceda99ca6424dc1df29f0746aabd.tar.bz2 |
* MAINTAINERS: Update my email address
* nm.c (print_symbol_info_bsd): Use a simple printf string.
Diffstat (limited to 'binutils/nm.c')
-rw-r--r-- | binutils/nm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/binutils/nm.c b/binutils/nm.c index 9a10e95..7928375 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -1475,10 +1475,9 @@ print_symbol_info_bsd (info, abfd) if (bfd_is_undefined_symclass (info->type)) { #ifdef BFD64 - printf ("%*s", 16, ""); -#else - printf ("%*s", 8, ""); + printf (" "); #endif + printf (" "); } else print_value (info->value); |