summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-07-19 21:19:16 +0200
committerLennart Poettering <lennart@poettering.net>2008-07-19 21:19:16 +0200
commit1b28e03da2224a2fbba677bcb732030e59be3ad7 (patch)
tree87a150bd3a7b7a1f98d280ae483b1ac6c05d1b92
parent659d98ee3391f09108de188eb58ea76f74e60f7f (diff)
fix order strpool decorators
-rw-r--r--strpool.c4
1 files changed, 1 insertions, 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) {