Skip to content

Commit ea03ce7

Browse files
committed
quirc: fix compiler warning
1 parent d84629c commit ea03ce7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/esp32-quirc/lib/decode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static const uint8_t gf256_log[256] = {
113113
0x4f, 0xae, 0xd5, 0xe9, 0xe6, 0xe7, 0xad, 0xe8,
114114
0x74, 0xd6, 0xf4, 0xea, 0xa8, 0x50, 0x58, 0xaf};
115115

116-
const static struct galois_field gf256 = {
116+
static const struct galois_field gf256 = {
117117
.p = 255,
118118
.log = gf256_log,
119119
.exp = gf256_exp};
@@ -970,4 +970,4 @@ quirc_decode_error_t quirc_decode(const struct quirc_code *code,
970970
}
971971

972972
return QUIRC_SUCCESS;
973-
}
973+
}

0 commit comments

Comments
 (0)