projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17f15df
)
Fixed wrong function return type in settings.
author
Daniel Carl
<danielcarl@gmx.de>
Wed, 8 Jan 2014 00:00:35 +0000
(
01:00
+0100)
committer
Daniel Carl
<danielcarl@gmx.de>
Wed, 8 Jan 2014 00:00:35 +0000
(
01:00
+0100)
src/setting.c
patch
|
blob
|
history
diff --git
a/src/setting.c
b/src/setting.c
index
09410fe
..
cd4fdfa
100644
(file)
--- 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
;
}
}