summaryrefslogtreecommitdiff
path: root/bin/test
diff options
context:
space:
mode:
authorMarcelo Araujo <araujo@FreeBSD.org>2016-04-19 00:38:07 +0000
committerMarcelo Araujo <araujo@FreeBSD.org>2016-04-19 00:38:07 +0000
commit172c3b0b5f610e0b342aa70922a355e511a67f3a (patch)
treec2ed4ed83a26faf1144329b18a8da6465cb8d261 /bin/test
parenta0adbb3df15f083bb5435aa579d574e1cb82e7ce (diff)
downloadsrc-test-172c3b0b5f610e0b342aa70922a355e511a67f3a.tar.gz
src-test-172c3b0b5f610e0b342aa70922a355e511a67f3a.zip
Use NULL for pointers instead of 0.
MFC after: 2 weeks.
Notes
Notes: svn path=/head/; revision=298232
Diffstat (limited to 'bin/test')
-rw-r--r--bin/test/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/test/test.c b/bin/test/test.c
index 48b718e6412da..b500067649f8c 100644
--- a/bin/test/test.c
+++ b/bin/test/test.c
@@ -465,7 +465,7 @@ t_lex(char *s)
{
int num;
- if (s == 0) {
+ if (s == NULL) {
return EOI;
}
num = find_op(s);