summaryrefslogtreecommitdiff
path: root/lib/printquoted.c
diff options
context:
space:
mode:
authorJames Youngman <jay@gnu.org>2009-03-04 10:49:59 +0000
committerJames Youngman <jay@gnu.org>2009-03-04 10:49:59 +0000
commit5dce9f443cb41aa268bcab291dea8657572c17b0 (patch)
tree8fc14dea0fefd00aeb4a8279f9f8fe9607206378 /lib/printquoted.c
parenta7aa8a048195d500f8a07d77e2f94edcc8277a7d (diff)
downloadfindutils-5dce9f443cb41aa268bcab291dea8657572c17b0.tar.gz
Removed trailing whitespace.
Removed trailing whitespace. * Makefile.am: Removed trailing white space. * NEWS, build-aux/check-testfiles.sh, build-aux/src-sniff.py, doc/Makefile.am, doc/find-maint.texi, doc/find.texi, find/Makefile.am, find/defs.h, find/find.1, find/find.c, find/finddata.c, find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c, find/tree.c, find/util.c, import-gnulib.sh, lib/Makefile.am, lib/buildcmd.c, lib/buildcmd.h, lib/dircallback.c, lib/dircallback.h, lib/extendbuf.c, lib/extendbuf.h, lib/findutils-version.c, lib/findutils-version.h, lib/forcefindlib.c, lib/gnulib-version.h, lib/listfile.c, lib/modetype.h, lib/nextelem.c, lib/nextelem.h, lib/printquoted.c, lib/printquoted.h, lib/qmark.c, lib/regexprops.c, lib/regextype.c, lib/savedirinfo.c, lib/savedirinfo.h, lib/strspn.c, lib/wait.h, lib/waitpid.c, locate/bigram.c, locate/code.c, locate/locate.1, locate/locate.c, locate/locatedb.5, locate/locatedb.h, locate/updatedb.1, locate/updatedb.sh, locate/word_io.c, m4/findlib.m4, m4/nullsort.m4, m4/withfts.m4, xargs/xargs.1: Likewise. Signed-off-by: James Youngman <jay@gnu.org>
Diffstat (limited to 'lib/printquoted.c')
-rw-r--r--lib/printquoted.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/printquoted.c b/lib/printquoted.c
index aa2c3a4e..4d782627 100644
--- a/lib/printquoted.c
+++ b/lib/printquoted.c
@@ -1,18 +1,18 @@
/* printquoted.c -- print a specified string with any necessary quoting.
- Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000,
+ Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000,
2003, 2004, 2005 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -36,8 +36,8 @@
/*
- * Print S according to the format FORMAT, but if the destination is a tty,
- * convert any potentially-dangerous characters. The logic in this function
+ * Print S according to the format FORMAT, but if the destination is a tty,
+ * convert any potentially-dangerous characters. The logic in this function
* was taken from ls.c in coreutils (at Sun Jun 5 20:42:51 2005 UTC).
*/
int
@@ -48,7 +48,7 @@ print_quoted (FILE *fp,
const char *s)
{
int rv;
-
+
if (dest_is_tty)
{
char smallbuf[BUFSIZ];
@@ -69,7 +69,7 @@ print_quoted (FILE *fp,
/* Replace any remaining funny characters with '?'. */
len = qmark_chars(buf, len);
-
+
rv = fprintf(fp, format, buf); /* Print the quoted version */
if (buf != smallbuf)
{