diff options
Diffstat (limited to 'src/chartab.c')
| -rw-r--r-- | src/chartab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chartab.c b/src/chartab.c index 50c3fd7cb73..2f0e88bd404 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -36,7 +36,7 @@ const int chartab_size[4] = | |||
| 36 | 36 | ||
| 37 | /* Number of characters each element of Nth level char-table | 37 | /* Number of characters each element of Nth level char-table |
| 38 | covers. */ | 38 | covers. */ |
| 39 | const int chartab_chars[4] = | 39 | static const int chartab_chars[4] = |
| 40 | { (1 << (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), | 40 | { (1 << (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), |
| 41 | (1 << (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), | 41 | (1 << (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), |
| 42 | (1 << CHARTAB_SIZE_BITS_3), | 42 | (1 << CHARTAB_SIZE_BITS_3), |
| @@ -44,7 +44,7 @@ const int chartab_chars[4] = | |||
| 44 | 44 | ||
| 45 | /* Number of characters (in bits) each element of Nth level char-table | 45 | /* Number of characters (in bits) each element of Nth level char-table |
| 46 | covers. */ | 46 | covers. */ |
| 47 | const int chartab_bits[4] = | 47 | static const int chartab_bits[4] = |
| 48 | { (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), | 48 | { (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), |
| 49 | (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), | 49 | (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), |
| 50 | CHARTAB_SIZE_BITS_3, | 50 | CHARTAB_SIZE_BITS_3, |