From 8e224f45c2833ac9e590084daf88846b4bf20a9f Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Sun, 25 Oct 2020 13:04:33 +0000 Subject: [PATCH] Fix: Corrected invalid return value --- src/navigation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigation.c b/src/navigation.c index 5e2a4bd7..1e2aedc8 100644 --- a/src/navigation.c +++ b/src/navigation.c @@ -85,7 +85,7 @@ static inline int navigation_history_pop(navigation_history_t *history) history->fill--; refobject_unref(history->history[history->fill]); history->history[history->fill] = NULL; - return 1; + return 0; } static inline int navigation_history_push(navigation_history_t *history, mount_identifier_t *identifier)