mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
lex: Use NULL instead of 0 for pointers
Note araujo tried to fix it in r298241 but he only touched generated
files for bootstrap. This commit properly fixes the problem.
(cherry picked from commit 34e67bb597)
This commit is contained in:
parent
bba9922d99
commit
f1dab9dbdf
1 changed files with 1 additions and 1 deletions
|
|
@ -705,7 +705,7 @@ M4QEND "]""]"
|
|||
}
|
||||
nmstr[yyleng - 2 - end_is_ws] = '\0'; /* chop trailing brace */
|
||||
|
||||
if ( (nmdefptr = ndlookup( nmstr )) == 0 )
|
||||
if ( (nmdefptr = ndlookup( nmstr )) == NULL )
|
||||
format_synerr(
|
||||
_( "undefined definition {%s}" ),
|
||||
nmstr );
|
||||
|
|
|
|||
Loading…
Reference in a new issue