From 09cc57381a943c17dd0de1aa6d77e65169448ac8 Mon Sep 17 00:00:00 2001 From: Glorf Date: Tue, 18 Jun 2013 00:43:31 +0200 Subject: [PATCH] Bugfix #809 --- apps/mwiniimporter/main.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/mwiniimporter/main.cpp b/apps/mwiniimporter/main.cpp index c9d88c0bb..510b0c4a0 100644 --- a/apps/mwiniimporter/main.cpp +++ b/apps/mwiniimporter/main.cpp @@ -55,10 +55,8 @@ int main(int argc, char *argv[]) { std::cerr << "ini file does not exist" << std::endl; return -3; } - if(!boost::filesystem::exists(cfgFile)) { + if(!boost::filesystem::exists(cfgFile)) std::cerr << "cfg file does not exist" << std::endl; - return -4; - } MwIniImporter importer; importer.setVerbose(vm.count("verbose"));