summaryrefslogtreecommitdiff
path: root/outform.c
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 /outform.c
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 'outform.c')
-rw-r--r--outform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/outform.c b/outform.c
index 546f0c0..1cdd5be 100644
--- a/outform.c
+++ b/outform.c
@@ -18,7 +18,7 @@
static int ndrivers = 0;
-struct ofmt *ofmt_find(int8_t *name)
+struct ofmt *ofmt_find(char *name)
{ /* find driver */
int i;
@@ -28,7 +28,7 @@ struct ofmt *ofmt_find(int8_t *name)
return NULL;
}
-struct dfmt *dfmt_find(struct ofmt *ofmt, int8_t *name)
+struct dfmt *dfmt_find(struct ofmt *ofmt, char *name)
{ /* find driver */
struct dfmt **dfmt = ofmt->debug_formats;
while (*dfmt) {