diff options
author | Nick Clifton <nickc@redhat.com> | 1999-12-07 21:41:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-12-07 21:41:54 +0000 |
commit | 843dd99245aa9b2eb3cc5e248b002bf65726ae1e (patch) | |
tree | 078b69810e7dba68480e0b13fe979070700f3e0b /binutils | |
parent | 308009476c9903378e85e0e2cb59a9bc09c36035 (diff) | |
download | gdb-843dd99245aa9b2eb3cc5e248b002bf65726ae1e.zip gdb-843dd99245aa9b2eb3cc5e248b002bf65726ae1e.tar.gz gdb-843dd99245aa9b2eb3cc5e248b002bf65726ae1e.tar.bz2 |
fix typo in previous delta
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/readelf.c | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index 10400ca..637cdcb 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -126,6 +126,19 @@ unsigned int num_dump_sects = 0; #define DISASS_DUMP (1 << 1) #define DEBUG_DUMP (1 << 2) +/* How to rpint a vma value. */ +typedef enum print_mode +{ + HEX, + DEC, + DEC_5, + UNSIGNED, + PREFIX_HEX, + FULL_HEX, + LONG_HEX +} +print_mode; + /* Forward declarations for dumb compilers. */ static void print_vma PARAMS ((bfd_vma, print_mode)); static bfd_vma (* byte_get) PARAMS ((unsigned char *, int)); @@ -380,18 +393,6 @@ byte_get_little_endian (field, size) } /* Print a VMA value. */ -typedef enum print_mode -{ - HEX, - DEC, - DEC_5, - UNSIGNED, - PREFIX_HEX, - FULL_HEX, - LONG_HEX -} -print_mode; - static void print_vma (vma, mode) bfd_vma vma; |