mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug #45286: compilation warnings on mysql-5.0-bugteam on MacOSX
Fixed the 5.0-bugteam MacOSX warnings. client/mysqldump.c: Bug #45286: typecasts cmd-line-utils/readline/bind.c: Bug #45286: use variable of right type cmd-line-utils/readline/display.c: Bug #45286: use variable of right type dbug/user.r: Bug #45286: no warnings in generating man pages strings/ctype.c: Bug #45286: typecasts
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user