mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
charset.c:
Typo fix. Thanks Vladimir Kolpakov who noticed it. mysys/charset.c: Typo fix. Thanks Vladimir Kolpakov who noticed it.
This commit is contained in:
parent
948903fc4f
commit
db70513cb2
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue