mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
preproc.c: Fix regression introduced in bebf0d215
This commit is contained in:
parent
c158c713d1
commit
35eb2ea2ee
1 changed files with 1 additions and 1 deletions
|
|
@ -2439,7 +2439,7 @@ static int do_directive(Token * tline)
|
|||
error(ERR_NONFATAL, "unknown `%%use' package: %s", tline->text);
|
||||
else
|
||||
pkg_macro = (char *)use_pkg + 1; /* The first string will be <%define>__USE_*__ */
|
||||
if (use_pkg && smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
|
||||
if (use_pkg && ! smacro_defined(NULL, pkg_macro, 0, NULL, true)) {
|
||||
/* Not already included, go ahead and include it */
|
||||
stdmacpos = use_pkg;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue