diff --git a/daemon/main.cpp b/daemon/main.cpp index 6a9310b61..0234aafe0 100644 --- a/daemon/main.cpp +++ b/daemon/main.cpp @@ -326,23 +326,21 @@ lokinet_main(int argc, char* argv[]) "LokiNET is a free, open source, private, " "decentralized, \"market based sybil resistant\" " "and IP based onion routing network"); - options.add_options()("v,verbose", "Verbose", cxxopts::value())( + options.add_options()("v,verbose", "Verbose", cxxopts::value()) #ifdef _WIN32 ("install", "install win32 daemon to SCM", cxxopts::value())( "remove", "remove win32 daemon from SCM", cxxopts::value())( "win32-daemon", "do not use interactively", cxxopts::value()) #endif - "h,help", - "help", - cxxopts::value())("version", "version", cxxopts::value())( - "g,generate", "generate client config", cxxopts::value())( - "r,router", "run as router instead of client", cxxopts::value())( - "f,force", "overwrite", cxxopts::value())( - "c,colour", "colour output", cxxopts::value()->default_value("true"))( - "b,background", - "background mode (start, but do not connect to the network)", - cxxopts::value())( - "config", "path to configuration file", cxxopts::value()); + ("h,help", "help", cxxopts::value())("version", "version", cxxopts::value())( + "g,generate", "generate client config", cxxopts::value())( + "r,router", "run as router instead of client", cxxopts::value())( + "f,force", "overwrite", cxxopts::value())( + "c,colour", "colour output", cxxopts::value()->default_value("true"))( + "b,background", + "background mode (start, but do not connect to the network)", + cxxopts::value())( + "config", "path to configuration file", cxxopts::value()); options.parse_positional("config");