summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-28 18:18:21 +0000
committerJim Meyering <jim@meyering.net>2005-03-28 18:18:21 +0000
commita73da0345cd1d4ada0b96df5375941bf309834e3 (patch)
treeeab38cdfb621afe5ccb27f377c031659934d23cc /src/tail.c
parent3cae70f6e6369974527a534127804cde727eab55 (diff)
downloadcoreutils-a73da0345cd1d4ada0b96df5375941bf309834e3.tar.xz
(follow_mode_string): Use NULL, not `0'.
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c
index 1fbb1cf65..9a94a4d8e 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[] =