summaryrefslogtreecommitdiff
path: root/assemble.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-10-13 12:32:20 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-10-13 12:32:20 -0700
commita7643f4c04e8be996c72512c2a89a8f38321a4a5 (patch)
tree2dd679355c395bae3d419c5de9d195ae931b06f2 /assemble.c
parentf8563f7a987cd7b0d274d8895ece27fd475b319f (diff)
downloadnasm-a7643f4c04e8be996c72512c2a89a8f38321a4a5.tar.gz
assemble: xsizeflags[] is an opflags_t variable
One more case of int32_t instead of opflags_t... Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'assemble.c')
-rw-r--r--assemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/assemble.c b/assemble.c
index c329c3fb..821f0190 100644
--- a/assemble.c
+++ b/assemble.c
@@ -1993,7 +1993,7 @@ static enum match_result find_match(const struct itemplate **tempp,
{
const struct itemplate *temp;
enum match_result m, merr;
- int32_t xsizeflags[MAX_OPERANDS];
+ opflags_t xsizeflags[MAX_OPERANDS];
bool opsizemissing = false;
int i;