mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Several fixes revelaled by Intel compiler.
This commit is contained in:
parent
f5c00b0dbd
commit
acf218b708
18 changed files with 42 additions and 38 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue