mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 12:31:45 +08:00
Remove unnecessary casts.
This commit is contained in:
parent
d4aa5ac293
commit
522e534448
@ -1142,7 +1142,7 @@ static el_status_t c_possible(void)
|
|||||||
int ac;
|
int ac;
|
||||||
|
|
||||||
word = find_word();
|
word = find_word();
|
||||||
ac = rl_list_possib((char *)word, (char ***)&av);
|
ac = rl_list_possib(word, &av);
|
||||||
if (word)
|
if (word)
|
||||||
free(word);
|
free(word);
|
||||||
if (ac) {
|
if (ac) {
|
||||||
|
Loading…
Reference in New Issue
Block a user