Skip to content

Commit 116e851

Browse files
committed
Fix "‘static’ is not at beginning of declaration" warning
b98be8a used "const static" instead of "static const". We normally use the latter form. Discussion: https://postgr.es/m/z4mc2hzecahyq3paupfsouhuupmzmgum45md3k5my6bmo7gvn7@z5j26doqamqy
1 parent 14ffaec commit 116e851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/port/pg_localeconv_r.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct lconv_member_info
6060
* column is the name of the nl_item, if translating from nl_langinfo_l() (it's
6161
* always the member name, in upper case).
6262
*/
63-
const static struct lconv_member_info table[] = {
63+
static const struct lconv_member_info table[] = {
6464
/* String fields. */
6565
LCONV_S(LC_NUMERIC, decimal_point, DECIMAL_POINT),
6666
LCONV_S(LC_NUMERIC, thousands_sep, THOUSANDS_SEP),

0 commit comments

Comments
 (0)