summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asm/nasm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/asm/nasm.c b/asm/nasm.c
index fffe0ffd..d1a4fe0d 100644
--- a/asm/nasm.c
+++ b/asm/nasm.c
@@ -1929,6 +1929,7 @@ static void nasm_verror_common(int severity, const char *fmt, va_list args)
preproc->error_list_macros(severity);
switch (severity & ERR_MASK) {
+ case ERR_NOTE:
case ERR_DEBUG:
/* no further action, by definition */
break;
@@ -1965,6 +1966,8 @@ static void nasm_verror_common(int severity, const char *fmt, va_list args)
}
exit(3);
break;
+ default:
+ break; /* ??? */
}
}