From: Michael Schroeder Date: Fri, 7 Sep 2018 14:29:29 +0000 (+0200) Subject: Cosmetics: save some space X-Git-Tag: 0.6.36~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1861a2fd3f2f25884e1d3b13f8b1d6f2977c5b65;p=thirdparty%2Flibsolv.git Cosmetics: save some space --- 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); }