Fixed a syntax error & superfluous param decl that was causing the build to
authorMark Whitley <markw@lineo.com>
Wed, 26 Jul 2000 18:09:22 +0000 (18:09 -0000)
committerMark Whitley <markw@lineo.com>
Wed, 26 Jul 2000 18:09:22 +0000 (18:09 -0000)
fail.

coreutils/tail.c
tail.c

index 3043a80..2746af8 100644 (file)
@@ -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;
diff --git a/tail.c b/tail.c
index 3043a80..2746af8 100644 (file)
--- a/tail.c
+++ b/tail.c
@@ -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;