diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /util-linux/more.c | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz |
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index e3a1d8656..d7b7ce22f 100644 --- a/util-linux/more.c +++ b/util-linux/more.c @@ -3,10 +3,10 @@ * Mini more implementation for busybox * * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. - * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> + * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> * * Latest version blended together by Erik Andersen <andersen@codepoet.org>, - * based on the original more implementation by Bruce, and code from the + * based on the original more implementation by Bruce, and code from the * Debian boot-floppies team. * * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> @@ -101,7 +101,7 @@ extern int more_main(int argc, char **argv) file = bb_wfopen(*argv, "r"); if(file==0) goto loop; - + st.st_size = 0; fstat(fileno(file), &st); @@ -158,7 +158,7 @@ extern int more_main(int argc, char **argv) goto end; } - /* + /* * There are two input streams to worry about here: * * c : the character we are reading from the file being "mored" |