diff options
author | Mark Whitley <markw@lineo.com> | 2000-07-26 18:09:22 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-07-26 18:09:22 +0000 |
commit | 7ce41ad69296d391e4ef2fa92112e57264687063 (patch) | |
tree | 431b8a980c008dd009b25a0b7b8e78c8bee97852 /tail.c | |
parent | e92108ae6d9edab40b3c5c921ebfd0fea3c16614 (diff) |
Fixed a syntax error & superfluous param decl that was causing the build to
fail.
Diffstat (limited to 'tail.c')
-rw-r--r-- | tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -251,7 +251,7 @@ static int pipe_lines(int fd, long int n_lines) If `forever' is nonzero, keep reading from the end of the file until killed. Return the number of bytes read from the file. */ -static long dump_remainder(const char *filename,, int fd) +static long dump_remainder(int fd) { char buffer[BUFSIZ]; int bytes_read; |