From bb0235f7d8db0c0ea814118593da973609352089 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Mon, 27 Jan 2014 16:01:01 +0100 Subject: options: make definition of "spaces" more readable --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index f9a147a..7175c20 100644 --- a/src/options.c +++ b/src/options.c @@ -34,7 +34,7 @@ static void print_usage(const char *options, const char *message) { /* 28 spaces */ - static const char spaces[] = " "; + static const char spaces[] = {[0 ... 27] = ' ', [28] = 0}; int len = strlen(options); -- cgit v1.2.3