aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-07-26 18:09:22 +0000
committerMark Whitley <markw@lineo.com>2000-07-26 18:09:22 +0000
commit7ce41ad69296d391e4ef2fa92112e57264687063 (patch)
tree431b8a980c008dd009b25a0b7b8e78c8bee97852 /coreutils/tail.c
parente92108ae6d9edab40b3c5c921ebfd0fea3c16614 (diff)
downloadbusybox-w32-7ce41ad69296d391e4ef2fa92112e57264687063.tar.gz
busybox-w32-7ce41ad69296d391e4ef2fa92112e57264687063.tar.bz2
busybox-w32-7ce41ad69296d391e4ef2fa92112e57264687063.zip
Fixed a syntax error & superfluous param decl that was causing the build to
fail.
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 3043a80d4..2746af83b 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -251,7 +251,7 @@ static int pipe_lines(int fd, long int n_lines)
251 If `forever' is nonzero, keep reading from the end of the file 251 If `forever' is nonzero, keep reading from the end of the file
252 until killed. Return the number of bytes read from the file. */ 252 until killed. Return the number of bytes read from the file. */
253 253
254static long dump_remainder(const char *filename,, int fd) 254static long dump_remainder(int fd)
255{ 255{
256 char buffer[BUFSIZ]; 256 char buffer[BUFSIZ];
257 int bytes_read; 257 int bytes_read;