summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-01-08 08:34:52 +0000
committerJim Meyering <jim@meyering.net>2001-01-08 08:34:52 +0000
commit134bbf752ce127dc73cd6ac7ca0ccb71b3d7a386 (patch)
treeeb5db00e6ee9cfd519670f086746bda45ded5fbf /src/tail.c
parentb27dd775ad6b401b2bcd502846ade7ed1e1eff5f (diff)
downloadcoreutils-134bbf752ce127dc73cd6ac7ca0ccb71b3d7a386.tar.xz
whoops. move printf args, too
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tail.c b/src/tail.c
index f2433ab3c..0c547507d 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -263,7 +263,10 @@ With no FILE, or when FILE is -, read standard input.\n\
--help display this help and exit\n\
--version output version information and exit\n\
\n\
-"));
+"),
+ DEFAULT_N_LINES, DEFAULT_N_LINES,
+ DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
+ );
printf (_("\
If the first character of N (the number of bytes or lines) is a `+',\n\
print beginning with the Nth item from the start of each file, otherwise,\n\
@@ -281,10 +284,7 @@ rotation). Use --follow=name in that case. That causes tail to track the\n\
named file by reopening it periodically to see if it has been removed and\n\
recreated by some other program.\n\
\n\
-"),
- DEFAULT_N_LINES, DEFAULT_N_LINES,
- DEFAULT_MAX_N_UNCHANGED_STATS_BETWEEN_OPENS
- );
+"));
puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
}
exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);