Commit ec54a5c7 authored by Max Kellermann's avatar Max Kellermann

CommandLine: use C++11 initializers

parent 735a3712
...@@ -306,10 +306,6 @@ void ...@@ -306,10 +306,6 @@ void
ParseCommandLine(int argc, char **argv, struct options *options) ParseCommandLine(int argc, char **argv, struct options *options)
{ {
bool use_config_file = true; bool use_config_file = true;
options->kill = false;
options->daemon = true;
options->log_stderr = false;
options->verbose = false;
// First pass: handle command line options // First pass: handle command line options
OptionParser parser(option_defs, argc, argv); OptionParser parser(option_defs, argc, argv);
......
...@@ -21,10 +21,10 @@ ...@@ -21,10 +21,10 @@
#define MPD_COMMAND_LINE_HXX #define MPD_COMMAND_LINE_HXX
struct options { struct options {
bool kill; bool kill = false;
bool daemon; bool daemon = true;
bool log_stderr; bool log_stderr = false;
bool verbose; bool verbose = false;
}; };
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment