1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Bug #45286: compilation warnings on mysql-5.0-bugteam on MacOSX

Fixed the 5.0-bugteam MacOSX warnings.
This commit is contained in:
Georgi Kodinov
2009-06-05 15:05:26 +03:00
parent f0ae92f471
commit 5ec61b304c
5 changed files with 11 additions and 5 deletions

View File

@ -699,8 +699,10 @@ rl_function_of_keyseq (keyseq, map, type)
for (i = 0; keyseq && keyseq[i]; i++)
{
unsigned char ic = keyseq[i];
unsigned char uc = keyseq[i];
int ic;
ic= uc;
if (META_CHAR (ic) && _rl_convert_meta_chars_to_ascii)
{
if (map[ESC].type == ISKMAP)