From 1861a2fd3f2f25884e1d3b13f8b1d6f2977c5b65 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Fri, 7 Sep 2018 16:29:29 +0200 Subject: [PATCH] Cosmetics: save some space --- src/strpool.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/strpool.c b/src/strpool.c index 5e879183..b4a09a51 100644 --- a/src/strpool.c +++ b/src/strpool.c @@ -56,11 +56,7 @@ stringpool_freehash(Stringpool *ss) void stringpool_init_empty(Stringpool *ss) { - const char *emptystrs[] = { - "", - "", - 0, - }; + static const char *emptystrs[] = { "", "", 0 }; stringpool_init(ss, emptystrs); } -- 2.47.2