From 3f7b8da537dca5b97657519eb8544f02f6b32d55 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sun, 14 May 2023 23:58:54 +0200 Subject: sfeed_gopher: reduce scope and shadowing a variable --- sfeed_gopher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfeed_gopher.c b/sfeed_gopher.c index 78e1f12..af6a49c 100644 --- a/sfeed_gopher.c +++ b/sfeed_gopher.c @@ -7,7 +7,6 @@ #include "util.h" -static struct feed f; static char *prefixpath = "/", *host = "127.0.0.1", *port = "70"; /* default */ static char *line; static size_t linesize; @@ -121,6 +120,7 @@ printfeed(FILE *fpitems, FILE *fpin, struct feed *f) int main(int argc, char *argv[]) { + struct feed f; FILE *fpitems, *fpindex, *fp; char *name, *p; int i; -- cgit v1.2.3