From d5cb16aa1ff20040042ac58eaa31ce1d7dc9cbd0 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 28 Jan 2014 08:19:24 -0800 Subject: [PATCH] NULL -> false --- pager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pager.cpp b/pager.cpp index 1dd4ecc4f..d7025bc87 100644 --- a/pager.cpp +++ b/pager.cpp @@ -712,7 +712,7 @@ bool pager_t::select_next_completion_in_direction(selection_direction_t directio /* Must have something to select */ if (this->completion_infos.empty()) { - return NULL; + return false; } /* Handle the case of nothing selected yet */