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