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);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to