From c7e3ec5f37738c43b3918cba6977fa51631a23af Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 8 Jan 2021 12:05:14 +0100 Subject: sfeed_gopher: optimize common output character function Same reason as the previous commit (allow to expand to macros). --- sfeed_gopher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfeed_gopher.c') diff --git a/sfeed_gopher.c b/sfeed_gopher.c index 69b15f6..918dcda 100644 --- a/sfeed_gopher.c +++ b/sfeed_gopher.c @@ -28,7 +28,7 @@ gophertext(FILE *fp, const char *s) fputs(" ", fp); break; default: - fputc(*s, fp); + putc(*s, fp); break; } } -- cgit v1.2.3