mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-12 18:40:23 +08:00
Build: Suppress warning messages
Giving a correct printf format specifier supresses the warning message. And a local pointer variable is initialized with NULL. Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
This commit is contained in:
parent
945b1b8f36
commit
c9486b965b
2
parser.c
2
parser.c
@ -212,7 +212,7 @@ static bool parse_braces(decoflags_t *decoflags)
|
||||
do {
|
||||
if (i == TOKEN_OPMASK) {
|
||||
if (*decoflags & OPMASK_MASK) {
|
||||
nasm_error(ERR_NONFATAL, "opmask k%lu is already set",
|
||||
nasm_error(ERR_NONFATAL, "opmask k%"PRIu64" is already set",
|
||||
*decoflags & OPMASK_MASK);
|
||||
*decoflags &= ~OPMASK_MASK;
|
||||
}
|
||||
|
@ -2156,7 +2156,7 @@ static int do_directive(Token * tline)
|
||||
Context *ctx;
|
||||
Cond *cond;
|
||||
MMacro *mmac, **mmhead;
|
||||
Token *t, *tt, *param_start, *macro_start, *last, **tptr, *origline;
|
||||
Token *t = NULL, *tt, *param_start, *macro_start, *last, **tptr, *origline;
|
||||
Line *l;
|
||||
struct tokenval tokval;
|
||||
expr *evalresult;
|
||||
|
Loading…
x
Reference in New Issue
Block a user