From 1b28e03da2224a2fbba677bcb732030e59be3ad7 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 19 Jul 2008 21:19:16 +0200 Subject: fix order strpool decorators --- strpool.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/strpool.c b/strpool.c index 385ab1a..5bf468d 100644 --- a/strpool.c +++ b/strpool.c @@ -26,7 +26,6 @@ static void free_items(struct item *first) { first = n; } - } static void find_suffixes(struct item *first) { @@ -161,8 +160,7 @@ static void dump_pool(FILE *out, struct item *first) { fprintf(out, "/* Saved %i relocations, saved %i strings (%i b) due to suffix compression. */\n", saved_rel, saved_strings, saved_bytes); - - fputs("const static char _strpool_[] =", out); + fputs("static const char _strpool_[] =", out); for (i = first; i; i = i->next) { -- cgit