From 71a332ede8351fd00792b0bc2e5ca1ccf4de69a1 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Fri, 26 Jul 2013 09:04:08 +0200 Subject: [PATCH] Fix return with no value --- shortcuts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shortcuts.c b/shortcuts.c index 6606d60..f5d551c 100644 --- a/shortcuts.c +++ b/shortcuts.c @@ -725,7 +725,7 @@ sc_jumplist(girara_session_t* session, girara_argument_t* argument, /* if no jumps in the jumplist */ if (zathura->jumplist.size == 0) { - return; + return true; } GtkAdjustment* hadj = gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(session->gtk.view));