fixed extra semicolon

This commit is contained in:
Stanislav Mekhanoshin 2006-04-13 13:23:40 +00:00
parent 6201dd49c7
commit e3bbfbee86

View File

@ -4911,15 +4911,15 @@ struct cs_info * get_current_cs(const char * es) {
} }
} }
return ccs; return ccs;
}; }
struct unicode_info * get_utf_cs() { struct unicode_info * get_utf_cs() {
return utf_lst; return utf_lst;
}; }
int get_utf_cs_len() { int get_utf_cs_len() {
return UTF_LST_LEN; return UTF_LST_LEN;
}; }
struct lang_map lang2enc[] = { struct lang_map lang2enc[] = {
{"az", "UTF-8", LANG_az}, {"az", "UTF-8", LANG_az},
@ -4957,7 +4957,7 @@ const char * get_default_enc(const char * lang) {
} }
} }
return NULL; return NULL;
}; }
int get_lang_num(const char * lang) { int get_lang_num(const char * lang) {
int n = sizeof(lang2enc) / sizeof(lang2enc[0]); int n = sizeof(lang2enc) / sizeof(lang2enc[0]);
@ -4967,4 +4967,4 @@ int get_lang_num(const char * lang) {
} }
} }
return LANG_xx; return LANG_xx;
}; }