diff options
author | Kai Tietz <ktietz70@googlemail.com> | 2014-06-05 10:59:08 +0200 |
---|---|---|
committer | Kai Tietz <ktietz70@googlemail.com> | 2014-06-11 09:15:19 +0200 |
commit | bad1a9f77e3e3548aeb4e4eda9f482b9093346b3 (patch) | |
tree | 8166e31a36be9d36ff5f42366d838bd403dea873 /bfd/libcoff-in.h | |
parent | e8de474960b6866797bec0bd35b3c720aa2e9053 (diff) | |
download | gdb-bad1a9f77e3e3548aeb4e4eda9f482b9093346b3.zip gdb-bad1a9f77e3e3548aeb4e4eda9f482b9093346b3.tar.gz gdb-bad1a9f77e3e3548aeb4e4eda9f482b9093346b3.tar.bz2 |
* libcoff-in.h (coff_tdata): Make relocbase member unsigned.
* libcoff.h: Regenerated.
Diffstat (limited to 'bfd/libcoff-in.h')
-rw-r--r-- | bfd/libcoff-in.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libcoff-in.h b/bfd/libcoff-in.h index cc1e52b..367d3bc 100644 --- a/bfd/libcoff-in.h +++ b/bfd/libcoff-in.h @@ -53,7 +53,7 @@ typedef struct coff_tdata unsigned long raw_syment_count; /* These are only valid once writing has begun. */ - long int relocbase; + unsigned long int relocbase; /* These members communicate important constants about the symbol table to GDB's symbol-reading code. These `constants' unfortunately vary |