summaryrefslogtreecommitdiff
path: root/nasm.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-10-03 21:24:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-10-03 21:24:51 -0700
commitbfc17121378b315399f1df25e902f40884ba7506 (patch)
tree86962962f84c8696d4900cbef80dca36fe2455e3 /nasm.c
parent0a98f6046d2cfd41916002c186909d7b0d2009de (diff)
downloadnasm-bfc17121378b315399f1df25e902f40884ba7506.tar.gz
nasm-bfc17121378b315399f1df25e902f40884ba7506.tar.bz2
nasm-bfc17121378b315399f1df25e902f40884ba7506.zip
BR 1352920: change loc_t -> cloc_t
Change loc_t to cloc_t to avoid AIX conflict. We really shouldn't use _t names at all; they are usually considered platform types, but worry about that later.
Diffstat (limited to 'nasm.c')
-rw-r--r--nasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasm.c b/nasm.c
index b7c1c66..ffed1e7 100644
--- a/nasm.c
+++ b/nasm.c
@@ -69,7 +69,7 @@ static uint32_t cmd_cpu = IF_PLEVEL; /* highest level by default */
static uint32_t cpu = IF_PLEVEL; /* passed to insn_size & assemble.c */
int global_offset_changed; /* referenced in labels.c */
-static loc_t location;
+static cloc_t location;
int in_abs_seg; /* Flag we are in ABSOLUTE seg */
int32_t abs_seg; /* ABSOLUTE segment basis */
int32_t abs_offset; /* ABSOLUTE offset */