svn commit: r298232 - head/bin/test

Marcelo Araujo araujo at FreeBSD.org
Tue Apr 19 00:38:09 UTC 2016


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);


More information about the svn-src-all mailing list