diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:18:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:18:21 +0000 |
commit | a73da0345cd1d4ada0b96df5375941bf309834e3 (patch) | |
tree | eab38cdfb621afe5ccb27f377c031659934d23cc /src | |
parent | 3cae70f6e6369974527a534127804cde727eab55 (diff) | |
download | coreutils-a73da0345cd1d4ada0b96df5375941bf309834e3.tar.xz |
(follow_mode_string): Use NULL, not `0'.
Diffstat (limited to 'src')
-rw-r--r-- | src/tail.c | 2 |
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[] = |