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>
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;