diff options
-rw-r--r-- | Modules/cjkcodecs/codeccommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cjkcodecs/codeccommon.h b/Modules/cjkcodecs/codeccommon.h index f66d892c9b..b66ff754ea 100644 --- a/Modules/cjkcodecs/codeccommon.h +++ b/Modules/cjkcodecs/codeccommon.h @@ -16,9 +16,9 @@ #endif #define ENCMAP(encoding) \ - const static encode_map *encoding##encmap; + static const encode_map *encoding##encmap; #define DECMAP(encoding) \ - const static decode_map *encoding##decmap; + static const decode_map *encoding##decmap; #define ENCODER_INIT(encoding) \ static int encoding##_encode_init( \ |