diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-07-03 15:28:45 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-03 15:28:45 -0700 |
commit | 099f05dce4626bca7a38d90a291333341fb505b0 (patch) | |
tree | e95b1d7fad00801fefd22ee83a18996c882b6125 /rdoff | |
parent | 6c98ca4ddce52101fb06abff7e65352693a01137 (diff) | |
download | nasm-099f05dce4626bca7a38d90a291333341fb505b0.tar.gz nasm-099f05dce4626bca7a38d90a291333341fb505b0.tar.bz2 nasm-099f05dce4626bca7a38d90a291333341fb505b0.zip |
rdfload: make the base addresses unsigned
Make the base addresses in rdfload unsigned. Note: this file is
really obsolete; it can't represent RDF2 with more than the 3
old-style segments.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'rdoff')
-rw-r--r-- | rdoff/rdfload.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rdoff/rdfload.h b/rdoff/rdfload.h index 8f66694..87d7ecc 100644 --- a/rdoff/rdfload.h +++ b/rdoff/rdfload.h @@ -19,9 +19,9 @@ typedef struct RDFModuleStruct { rdffile f; /* file structure */ uint8_t *t, *d, *b; /* text, data, and bss segments */ - int32_t textrel; - int32_t datarel; - int32_t bssrel; + uint32_t textrel; + uint32_t datarel; + uint32_t bssrel; void *symtab; } rdfmodule; |