mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
NULL -> false
This commit is contained in:
parent
afd6ca314c
commit
d5cb16aa1f
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ bool pager_t::select_next_completion_in_direction(selection_direction_t directio
|
||||||
/* Must have something to select */
|
/* Must have something to select */
|
||||||
if (this->completion_infos.empty())
|
if (this->completion_infos.empty())
|
||||||
{
|
{
|
||||||
return NULL;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Handle the case of nothing selected yet */
|
/* Handle the case of nothing selected yet */
|
||||||
|
|
Loading…
Reference in a new issue