From d879833ebefc1e8e1e61b91cc7faf72cf0e0fe1c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 5 May 2016 20:37:57 -0400 Subject: [PATCH] CmdConfig: Omitted the boolean return --- src/commands/CmdConfig.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/CmdConfig.cpp b/src/commands/CmdConfig.cpp index 745a7b32..4d3f672a 100644 --- a/src/commands/CmdConfig.cpp +++ b/src/commands/CmdConfig.cpp @@ -127,6 +127,8 @@ static bool setConfigVariable (const Rules& rules, std::string name, std::string if (change) File::write (rules.file (), lines); + + return change; } ////////////////////////////////////////////////////////////////////////////////