diff options
author | Jim Meyering <jim@meyering.net> | 2003-03-07 23:24:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-03-07 23:24:53 +0000 |
commit | a1134e1eb6b5ea902bafff844d168f26831a79f4 (patch) | |
tree | 2c98c947112f3c8607644e862947189eb35f8403 /src | |
parent | b24b4b4d59460a7dbfdfaa52797918b7079a213f (diff) | |
download | coreutils-a1134e1eb6b5ea902bafff844d168f26831a79f4.tar.xz |
(print_it): Use putchar, not fputs, to output a single character.
Diffstat (limited to 'src')
-rw-r--r-- | src/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat.c b/src/stat.c index b19929fe9..455f1c709 100644 --- a/src/stat.c +++ b/src/stat.c @@ -576,7 +576,7 @@ print_it (char const *masterformat, char const *filename, { case '\0': case '%': - fputs ("%", stdout); + putchar ('%'); break; default: print_func (dest, *p, filename, data); |