mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
Don't suppress ERR_DEBUG messages from the list file
In some cases, debug messages in the list file can be enormously powerful for finding problems. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
bbb7a1aad9
commit
0fcb488df3
1 changed files with 1 additions and 2 deletions
3
nasm.c
3
nasm.c
|
|
@ -2019,8 +2019,7 @@ static void nasm_verror_common(int severity, const char *fmt, va_list args)
|
|||
* Don't suppress this with skip_this_pass(), or we don't get
|
||||
* pass1 or preprocessor warnings in the list file
|
||||
*/
|
||||
if ((severity & ERR_MASK) >= ERR_WARNING)
|
||||
lfmt->error(severity, pfx, msg);
|
||||
lfmt->error(severity, pfx, msg);
|
||||
|
||||
if (severity & ERR_USAGE)
|
||||
want_usage = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue