From: Jim Meyering Date: Mon, 28 Mar 2005 18:18:21 +0000 (+0000) Subject: (follow_mode_string): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a73da0345cd1d4ada0b96df5375941bf309834e3;p=thirdparty%2Fcoreutils.git (follow_mode_string): Use NULL, not `0'. --- diff --git a/src/tail.c b/src/tail.c index 1fbb1cf65f..9a94a4d8e7 100644 --- a/src/tail.c +++ b/src/tail.c @@ -90,7 +90,7 @@ enum Follow_mode static char const *const follow_mode_string[] = { - "descriptor", "name", 0 + "descriptor", "name", NULL }; static enum Follow_mode const follow_mode_map[] =