Fixed a syntax error & superfluous param decl that was causing the build to

fail.
This commit is contained in:
Mark Whitley 2000-07-26 18:09:22 +00:00
parent e92108ae6d
commit 7ce41ad692
2 changed files with 2 additions and 2 deletions

View 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;

2
tail.c
View 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;