summaryrefslogtreecommitdiff
path: root/parser.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 /parser.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 'parser.c')
-rw-r--r--parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser.c b/parser.c
index fc1f0cf..2096c41 100644
--- a/parser.c
+++ b/parser.c
@@ -36,9 +36,9 @@ static int i;
static struct tokenval tokval;
static efunc error;
static struct ofmt *outfmt; /* Structure of addresses of output routines */
-static loc_t *location; /* Pointer to current line's segment,offset */
+static cloc_t *location; /* Pointer to current line's segment,offset */
-void parser_global_info(struct ofmt *output, loc_t * locp)
+void parser_global_info(struct ofmt *output, cloc_t * locp)
{
outfmt = output;
location = locp;