unicode: Move static keyword to the front of declarations
authorKrzysztof Wilczynski <kw@linux.com>
Fri, 30 Aug 2019 13:13:49 +0000 (15:13 +0200)
committerGabriel Krisman Bertazi <krisman@collabora.com>
Tue, 17 Sep 2019 15:48:11 +0000 (11:48 -0400)
Move the static keyword to the front of declarations of nfdi_test_data
and nfdicf_test_data, and resolve the following compiler warnings that
can be seen when building with warnings enabled (W=1):

fs/unicode/utf8-selftest.c:38:1: warning:
  ‘static’ is not at beginning of declaration [-Wold-style-declaration]

fs/unicode/utf8-selftest.c:92:1: warning:
  ‘static’ is not at beginning of declaration [-Wold-style-declaration]

Signed-off-by: Krzysztof Wilczynski <kw@linux.com>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
fs/unicode/utf8-selftest.c

index 6c1a36bbf6adb34467a4804de471b999dd4a0e34..6fe8af7edccbb02b4747cde0ec1444745ee254ed 100644 (file)
@@ -35,7 +35,7 @@ unsigned int total_tests;
 #define test_f(cond, fmt, ...) _test(cond, __func__, __LINE__, fmt, ##__VA_ARGS__)
 #define test(cond) _test(cond, __func__, __LINE__, "")
 
-const static struct {
+static const struct {
        /* UTF-8 strings in this vector _must_ be NULL-terminated. */
        unsigned char str[10];
        unsigned char dec[10];
@@ -89,7 +89,7 @@ const static struct {
 
 };
 
-const static struct {
+static const struct {
        /* UTF-8 strings in this vector _must_ be NULL-terminated. */
        unsigned char str[30];
        unsigned char ncf[30];