Replace a buch of "const static" with "static const"

C18 section 6.11.5 says that "const static" is obsolescent.
This commit is contained in:
Ben Harris
2023-02-18 22:04:52 +00:00
parent 5fa60c4d46
commit d7b931824b
2 changed files with 23 additions and 23 deletions

View File

@ -123,7 +123,7 @@ static game_params *default_params(void)
return ret;
}
const static struct game_params group_presets[] = {
static const struct game_params group_presets[] = {
{ 6, DIFF_NORMAL, true },
{ 6, DIFF_NORMAL, false },
{ 8, DIFF_NORMAL, true },