summaryrefslogtreecommitdiff
path: root/rdoff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-07-03 15:28:45 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-07-03 15:28:45 -0700
commit099f05dce4626bca7a38d90a291333341fb505b0 (patch)
treee95b1d7fad00801fefd22ee83a18996c882b6125 /rdoff
parent6c98ca4ddce52101fb06abff7e65352693a01137 (diff)
downloadnasm-099f05dce4626bca7a38d90a291333341fb505b0.tar.gz
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rdoff/rdfload.h b/rdoff/rdfload.h
index 8f66694d..87d7ecc5 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;