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>
This commit is contained in:
H. Peter Anvin 2009-07-03 15:28:45 -07:00
parent 6c98ca4ddc
commit 099f05dce4

View file

@ -19,9 +19,9 @@
typedef struct RDFModuleStruct { typedef struct RDFModuleStruct {
rdffile f; /* file structure */ rdffile f; /* file structure */
uint8_t *t, *d, *b; /* text, data, and bss segments */ uint8_t *t, *d, *b; /* text, data, and bss segments */
int32_t textrel; uint32_t textrel;
int32_t datarel; uint32_t datarel;
int32_t bssrel; uint32_t bssrel;
void *symtab; void *symtab;
} rdfmodule; } rdfmodule;