summaryrefslogtreecommitdiff
path: root/lib/printquoted.c
diff options
context:
space:
mode:
authorJames Youngman <jay@gnu.org>2010-04-01 00:06:23 +0100
committerJames Youngman <jay@gnu.org>2010-04-01 00:06:23 +0100
commit419e5eff6494c6efbbfb007c42e28e5eb54716b2 (patch)
tree2eae418ae2bf1e7aaecfa4fc7926b906d6b528a0 /lib/printquoted.c
parenta0f8455a0b473919f654b7af8a8cba1594804ab2 (diff)
downloadfindutils-419e5eff6494c6efbbfb007c42e28e5eb54716b2.tar.gz
Coding style fixes: space after function names.
* lib/buildcmd.c: Insert a space between function name and open parenthesis. * lib/dircallback.c: Likewise. * lib/extendbuf.c: Likewise. * lib/fdleak.c: Likewise. * lib/findutils-version.c: Likewise. * lib/forcefindlib.c: Likewise. * lib/listfile.c: Likewise. * lib/printquoted.c: Likewise. * lib/qmark.c: Likewise. * lib/regexprops.c: Likewise. * lib/regextype.c: Likewise. * lib/savedirinfo.c: Likewise. Signed-off-by: James Youngman <jay@gnu.org>
Diffstat (limited to 'lib/printquoted.c')
-rw-r--r--lib/printquoted.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/printquoted.c b/lib/printquoted.c
index 1868f821..068ea4dc 100644
--- a/lib/printquoted.c
+++ b/lib/printquoted.c
@@ -1,7 +1,7 @@
/* printquoted.c -- print a specified string with any necessary quoting.
- Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000,
- 2003, 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003, 2004, 2005,
+ 2007, 2009, 2010 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
@@ -62,19 +62,19 @@ print_quoted (FILE *fp,
}
/* Replace any remaining funny characters with '?'. */
- len = qmark_chars(buf, len);
+ len = qmark_chars (buf, len);
- rv = fprintf(fp, format, buf); /* Print the quoted version */
+ rv = fprintf (fp, format, buf); /* Print the quoted version */
if (buf != smallbuf)
{
- free(buf);
+ free (buf);
buf = NULL;
}
}
else
{
/* no need to quote things. */
- rv = fprintf(fp, format, s);
+ rv = fprintf (fp, format, s);
}
return rv;
}