From b3da23806e7023fb579360adf049bb89a68716f5 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 23 Apr 2018 19:54:43 -0400 Subject: [PATCH] Move `static' keyword to beginning of declaration. Rockbox's GCC warns about this with -Wextra. --- keen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keen.c b/keen.c index 1e531d9..be77b18 100644 --- a/keen.c +++ b/keen.c @@ -91,7 +91,7 @@ static game_params *default_params(void) return ret; } -const static struct game_params keen_presets[] = { +static const struct game_params keen_presets[] = { { 4, DIFF_EASY, FALSE }, { 5, DIFF_EASY, FALSE }, { 5, DIFF_EASY, TRUE },