Author: araujo
Date: Tue Apr 19 00:38:07 2016
New Revision: 298232
URL: https://svnweb.freebsd.org/changeset/base/298232
Log:
Use NULL for pointers instead of 0.
MFC after: 2 weeks.
Modified:
head/bin/test/test.c
Modified: head/bin/test/test.c
==============================================================================
--- head/bin/test/test.c Mon Apr 18 23:26:11 2016 (r298231)
+++ head/bin/test/test.c Tue Apr 19 00:38:07 2016 (r298232)
@@ -465,7 +465,7 @@ t_lex(char *s)
{
int num;
- if (s == 0) {
+ if (s == NULL) {
return EOI;
}
num = find_op(s);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"