From cfbda617c8f621393bef0469e464250a0ec831d1 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 18 Mar 2015 12:30:07 +0100 Subject: [PATCH] Fix incorrect type for the --app argument refs #8791 --- icinga-app/icinga.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icinga-app/icinga.cpp b/icinga-app/icinga.cpp index af54c00ed..0e8c59560 100644 --- a/icinga-app/icinga.cpp +++ b/icinga-app/icinga.cpp @@ -186,7 +186,7 @@ int Main(void) ("color", "use VT100 color codes even when stdout is not a terminal") #endif /* _WIN32 */ ("define,D", po::value >(), "define a constant") - ("app,a", po::value >(), "application library name (default: icinga)") + ("app,a", po::value(), "application library name (default: icinga)") ("library,l", po::value >(), "load a library") ("include,I", po::value >(), "add include search directory") ("log-level,x", po::value(), "specify the log level for the console log");