diff options
author | NRK <nrk@disroot.org> | 2023-09-21 03:13:52 +0600 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2023-09-22 14:01:03 +0200 |
commit | a2af022b42beea7b8c29ca475f38efd10caf35e8 (patch) | |
tree | f05f86afd9f64a050ac00d0bdaa9d1a6f96c6edb | |
parent | c43e677d80f5eae1e05bcb71d88008fb8ded8cab (diff) |
sfeed_gopher: mark function as static
-rw-r--r-- | sfeed_gopher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_gopher.c b/sfeed_gopher.c index c879864..f9ee9b8 100644 --- a/sfeed_gopher.c +++ b/sfeed_gopher.c @@ -11,7 +11,7 @@ static size_t linesize; static time_t comparetime; /* Escape characters in gopher, CR and LF are ignored */ -void +static void gophertext(FILE *fp, const char *s) { for (; *s; s++) { |