1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

charset.c:

Typo fix.
  Thanks Vladimir Kolpakov who noticed it.
This commit is contained in:
bar@bar.intranet.mysql.r18.ru
2004-06-04 09:07:46 +05:00
parent da835a0a06
commit 3f556025a7

View File

@ -158,7 +158,7 @@ static int ch2x(int ch)
if (ch >= 'a' && ch <= 'f')
return 10 + ch - 'a';
if (ch >= 'A' && ch <= 'Z')
if (ch >= 'A' && ch <= 'F')
return 10 + ch - 'A';
return -1;