summaryrefslogtreecommitdiff
path: root/tools/codepages.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/codepages.c')
-rw-r--r--tools/codepages.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/codepages.c b/tools/codepages.c
index 75441f2493..07d95111de 100644
--- a/tools/codepages.c
+++ b/tools/codepages.c
@@ -23,8 +23,8 @@
23 23
24#define MAX_TABLE_SIZE 32768 24#define MAX_TABLE_SIZE 32768
25 25
26static const int mini_index[5] = { 26static const int mini_index[6] = {
27 0, 1, 3, 6, 7 27 0, 1, 3, 6, 7, 8
28}; 28};
29 29
30static unsigned short iso_table[MAX_TABLE_SIZE]; 30static unsigned short iso_table[MAX_TABLE_SIZE];
@@ -207,7 +207,7 @@ int main(int argc, char **argv)
207 of = fopen("isomini.cp", "wb"); 207 of = fopen("isomini.cp", "wb");
208 if (!of) return 1; 208 if (!of) return 1;
209 209
210 for (i=1; i<5; i++) { 210 for (i=1; i<6; i++) {
211 211
212 for (j=0; j<128; j++) { 212 for (j=0; j<128; j++) {
213 k = (unsigned char)j + 128; 213 k = (unsigned char)j + 128;