From 099f05dce4626bca7a38d90a291333341fb505b0 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 3 Jul 2009 15:28:45 -0700 Subject: [PATCH] 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 --- rdoff/rdfload.h | 6 +++--- 1 file 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; -- 2.11.4.GIT