diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-06 19:21:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-06 19:21:05 +0000 |
commit | 505ee4c31ca59edc327baf3d433d4cd8dec61ae3 (patch) | |
tree | 111a932424dbc7cff49dbc58969374eeb0798d8d /src/tail.c | |
parent | dda679e516bd9f16b0ec9c4d44fa24b67308cc36 (diff) | |
download | coreutils-505ee4c31ca59edc327baf3d433d4cd8dec61ae3.tar.xz |
(Follow_mode): Remove comma at end of enumerator list.
Reported by Kaveh Ghazi.
Diffstat (limited to 'src/tail.c')
-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 8365a1354..b1b4b4490 100644 --- a/src/tail.c +++ b/src/tail.c @@ -75,7 +75,7 @@ enum Follow_mode /* Follow each descriptor obtained upon opening a file. That means we'll continue to follow the end of a file even after it has been renamed or unlinked. */ - Follow_descriptor = 2, + Follow_descriptor = 2 }; static char const *const follow_mode_string[] = |