diff options
| author | Franklin Wei <me@fwei.tk> | 2018-04-24 18:00:08 -0400 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2018-04-25 06:48:57 +0100 |
| commit | 441b11b310a17dbf7751f4c77fe69ca729b0fffb (patch) | |
| tree | 42b9b4667191e3430eeca1f6f39094dfa7b37e63 | |
| parent | b3da23806e7023fb579360adf049bb89a68716f5 (diff) | |
| download | puzzles-441b11b310a17dbf7751f4c77fe69ca729b0fffb.zip puzzles-441b11b310a17dbf7751f4c77fe69ca729b0fffb.tar.gz puzzles-441b11b310a17dbf7751f4c77fe69ca729b0fffb.tar.bz2 puzzles-441b11b310a17dbf7751f4c77fe69ca729b0fffb.tar.xz | |
Make static keyword come first everywhere.
I somehow missed these instances as well. Oh well.
| -rw-r--r-- | towers.c | 2 | ||||
| -rw-r--r-- | unequal.c | 2 | ||||
| -rw-r--r-- | unruly.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -130,7 +130,7 @@ static game_params *default_params(void) return ret; } -const static struct game_params towers_presets[] = { +static const struct game_params towers_presets[] = { { 4, DIFF_EASY }, { 5, DIFF_EASY }, { 5, DIFF_HARD }, @@ -111,7 +111,7 @@ static char const unequal_diffchars[] = DIFFLIST(ENCODE); #define DEFAULT_PRESET 0 -const static struct game_params unequal_presets[] = { +static const struct game_params unequal_presets[] = { { 4, DIFF_EASY, 0 }, { 5, DIFF_EASY, 0 }, { 5, DIFF_SET, 0 }, @@ -94,7 +94,7 @@ static char const *const unruly_diffnames[] = { DIFFLIST(TITLE) }; static char const unruly_diffchars[] = DIFFLIST(ENCODE); #define DIFFCONFIG DIFFLIST(CONFIG) -const static struct game_params unruly_presets[] = { +static const struct game_params unruly_presets[] = { { 8, 8, FALSE, DIFF_EASY}, { 8, 8, FALSE, DIFF_NORMAL}, {10, 10, FALSE, DIFF_EASY}, |