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

Several fixes revelaled by Intel compiler.

This commit is contained in:
jani@a193-229-222-105.elisa-laajakaista.fi
2005-09-23 16:47:08 +03:00
parent f5c00b0dbd
commit acf218b708
18 changed files with 42 additions and 38 deletions

View File

@ -25,6 +25,7 @@
#include <sys/types.h>
#include <fcntl.h>
#if defined (HAVE_SYS_FILE_H)
# include <sys/file.h>
#endif
@ -1149,7 +1150,8 @@ compute_lcd_of_matches (match_list, matches, text)
rl_completion_found_quote &&
rl_filename_quoting_desired)
{
dtext = (*rl_filename_dequoting_function) (text, rl_completion_quote_character);
dtext = (*rl_filename_dequoting_function)
((char*) text, rl_completion_quote_character);
text = dtext;
}