diff options
author | araujo <araujo@FreeBSD.org> | 2016-04-19 00:38:07 +0000 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2016-04-19 00:38:07 +0000 |
commit | 2613322bcf6560209ba9f2e4a2cbdf130173a33b (patch) | |
tree | c2ed4ed83a26faf1144329b18a8da6465cb8d261 /bin | |
parent | 022b7dfaf4a06a63ae3054117c2d72e1e16f50a5 (diff) | |
download | FreeBSD-src-2613322bcf6560209ba9f2e4a2cbdf130173a33b.zip FreeBSD-src-2613322bcf6560209ba9f2e4a2cbdf130173a33b.tar.gz |
Use NULL for pointers instead of 0.
MFC after: 2 weeks.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/test/test.c b/bin/test/test.c index 48b718e..b500067 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); |