diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-09-19 04:27:01 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-09-19 04:27:01 +0000 |
commit | c9f57c24d0761693cc44a0e6d205c484dd9dbf52 (patch) | |
tree | 3babcd64b0c44e2bcd1539ff71dfb2569a529c22 /output | |
parent | f394043af0f450b2b60c3b7d42664cd2f9f000e4 (diff) | |
download | nasm-c9f57c24d0761693cc44a0e6d205c484dd9dbf52.tar.gz nasm-c9f57c24d0761693cc44a0e6d205c484dd9dbf52.tar.bz2 nasm-c9f57c24d0761693cc44a0e6d205c484dd9dbf52.zip |
Fixes from Bart Oldeman
Diffstat (limited to 'output')
-rw-r--r-- | output/outobj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/output/outobj.c b/output/outobj.c index 0f8fa36..14b6cd9 100644 --- a/output/outobj.c +++ b/output/outobj.c @@ -1101,7 +1101,8 @@ static void obj_out (long segto, const void *data, unsigned long type, static void obj_write_fixup (ObjRecord *orp, int bytes, int segrel, long seg, long wrt, struct Segment *segto) { - int locat, method; + unsigned locat; + int method; int base; long tidx, fidx; struct Segment *s = NULL; |