diff options
author | Keith Kanios <spook@dynatos.net> | 2007-04-13 16:47:53 +0000 |
---|---|---|
committer | Keith Kanios <spook@dynatos.net> | 2007-04-13 16:47:53 +0000 |
commit | a6dfa78b7805673b2b4955a9f34e21825730f79d (patch) | |
tree | e92c44a08121248c0789b63d41908b402fcb891e /outform.c | |
parent | 2cc61b34f0bc87010a649159f62d37d5ed529ee4 (diff) | |
download | nasm-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |