commit fb7a2ce307a76027534d2601f361cd06dff8938b
parent b254a79af61ceddda4610a523bfa5c616548d6e9
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date: Tue, 5 Jan 2021 03:19:42 -0800
Fix `default_address` const modifier in config.def.h
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.def.h b/config.def.h
@@ -2,7 +2,7 @@
#include "gawk.h"
/* default gopher hole (path, host, port): */
-static char *const default_address[] = { "/", "localhost", "70" };
+static char const *default_address[] = { "/", "localhost", "70" };
/* how long to wait for response */
static int timeout = 5 * 1000;