]> granicus.if.org Git - icinga2/commitdiff
Add missing new-line after output
authorGunnar Beutner <gunnar@beutner.name>
Mon, 20 Oct 2014 19:20:02 +0000 (21:20 +0200)
committerGunnar Beutner <gunnar@beutner.name>
Mon, 20 Oct 2014 19:20:02 +0000 (21:20 +0200)
refs #7370

lib/cli/variablegetcommand.cpp

index f920e50ee2d5256ed17d44f86c0f7729f72f6ce5..2ef66be871b7967bb68b62526fa0dfd013958071 100644 (file)
@@ -71,7 +71,7 @@ int VariableGetCommand::Run(const boost::program_options::variables_map& vm, con
        }
 
        if (vm.count("current")) {
-               std::cout << ScriptVariable::Get(ap[0], &Empty);
+               std::cout << ScriptVariable::Get(ap[0], &Empty) << "\n";
                return 0;
        }