From e3b461fc3fb7b7c1dd118329e9287c6f372934c4 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 25 Apr 2022 00:12:23 -0500 Subject: [PATCH] Silence two more "are never used uninitialized" warnings. --- lib/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/net.c b/lib/net.c index 5732b47e..8d3a6775 100644 --- a/lib/net.c +++ b/lib/net.c @@ -179,7 +179,7 @@ int xrecvwait(int fd, char *buf, int len, union socksaddr *sa, int timeout) char *escape_url(char *str, char *and) { int i, j , count; - char *ret, *ss; + char *ret QUIET, *ss QUIET; for (j = count = 0;;) { for (i = 0;;) { -- 2.39.2