From: Daniel Carl <danielcarl@gmx.de>
Date: Wed, 8 Jan 2014 00:00:35 +0000 (+0100)
Subject: Fixed wrong function return type in settings.
X-Git-Url: https://git.owens.tech/projects.html/projects.html/git?a=commitdiff_plain;h=4e8bbcd69d1510b3bae694f40de37cfb6b22ccc8;p=vimb.git

Fixed wrong function return type in settings.
---

diff --git a/src/setting.c b/src/setting.c
index 09410fe..cd4fdfa 100644
--- a/src/setting.c
+++ b/src/setting.c
@@ -687,7 +687,7 @@ static SettingStatus proxy(const Setting *s, const SettingType type)
         if (type == SETTING_GET) {
             print_value(s, &enabled);
 
-            return true;
+            return SETTING_OK;
         }
     }