1
1

Ticket #1835: Coding style fixups in src/charset.c

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
Этот коммит содержится в:
Leonid Myravyev 2009-11-20 12:45:59 +02:00 коммит произвёл Slava Zanko
родитель 4f57b7d3db
Коммит c3279bd980

Просмотреть файл

@ -154,7 +154,7 @@ get_codepage_index (const char *id)
return -1;
if (codepages == NULL)
return -1;
for (i = 0; codepages[i].id; ++i)
for (i = 0; i < n_codepages; i++)
if (strcmp (id, codepages[i].id) == 0)
return i;
return -1;