Constification

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Frediano Ziglio 2015-05-07 18:56:04 +01:00
parent daf406a179
commit 6e04b94751

View File

@ -540,7 +540,7 @@ static inline void encode_ones(Encoder *encoder, unsigned int n)
#define MELCSTATES 32 /* number of melcode states */
static int J[MELCSTATES] = {
static const int J[MELCSTATES] = {
0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 5, 6, 6, 7,
7, 8, 9, 10, 11, 12, 13, 14, 15
};