summaryrefslogtreecommitdiff
path: root/insns.h
diff options
context:
space:
mode:
authorKeith Kanios <spook@dynatos.net>2007-04-13 16:47:53 +0000
committerKeith Kanios <spook@dynatos.net>2007-04-13 16:47:53 +0000
commita6dfa78b7805673b2b4955a9f34e21825730f79d (patch)
treee92c44a08121248c0789b63d41908b402fcb891e /insns.h
parent2cc61b34f0bc87010a649159f62d37d5ed529ee4 (diff)
downloadnasm-a6dfa78b7805673b2b4955a9f34e21825730f79d.tar.gz
nasm-a6dfa78b7805673b2b4955a9f34e21825730f79d.tar.bz2
nasm-a6dfa78b7805673b2b4955a9f34e21825730f79d.zip
Fixed distinction between char and int8_t data types.
Diffstat (limited to 'insns.h')
-rw-r--r--insns.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.h b/insns.h
index 79363e5..79085a5 100644
--- a/insns.h
+++ b/insns.h
@@ -23,7 +23,7 @@ struct itemplate {
int opcode; /* the token, passed from "parser.c" */
int operands; /* number of operands */
int32_t opd[3]; /* bit flags for operand types */
- const int8_t *code; /* the code it assembles to */
+ const char *code; /* the code it assembles to */
uint32_t flags; /* some flags */
};