Use NULL for pointers instead of 0.
MFC after: 2 weeks.
This commit is contained in:
parent
a0adbb3df1
commit
172c3b0b5f
@ -465,7 +465,7 @@ t_lex(char *s)
|
||||
{
|
||||
int num;
|
||||
|
||||
if (s == 0) {
|
||||
if (s == NULL) {
|
||||
return EOI;
|
||||
}
|
||||
num = find_op(s);
|
||||
|
Loading…
Reference in New Issue
Block a user