From a1134e1eb6b5ea902bafff844d168f26831a79f4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 7 Mar 2003 23:24:53 +0000 Subject: [PATCH] (print_it): Use putchar, not fputs, to output a single character. --- src/stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stat.c b/src/stat.c index b19929fe97..455f1c7098 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); -- 2.47.3