From d0782e983ffedb1f3aa27e69cc8d21ee0f5c9051 Mon Sep 17 00:00:00 2001 From: Paul Kulchenko Date: Sun, 20 Mar 2022 11:06:13 -0700 Subject: [PATCH] Rename gc in redbean for consistency --- tool/net/redbean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/net/redbean.c b/tool/net/redbean.c index 1433a5be9..d88881f18 100644 --- a/tool/net/redbean.c +++ b/tool/net/redbean.c @@ -3532,7 +3532,7 @@ static void StorePath(const char *dirpath) { while ((e = readdir(d))) { if (strcmp(e->d_name, ".") == 0) continue; if (strcmp(e->d_name, "..") == 0) continue; - path = _gc(xjoinpaths(dirpath, e->d_name)); + path = gc(xjoinpaths(dirpath, e->d_name)); if (e->d_type == DT_DIR) { StorePath(path); } else {