diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-08-03 01:57:52 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-08-03 01:57:52 +0000 |
commit | 980c7177494c0f51446636124656fd957d6f5fe8 (patch) | |
tree | 3e0454047cb24d10dff5acf9244da9f62d0ed1a4 | |
parent | 954dcec27308529e17e09cb229a0807ed12fe874 (diff) | |
download | mpd-980c7177494c0f51446636124656fd957d6f5fe8.tar.gz mpd-980c7177494c0f51446636124656fd957d6f5fe8.tar.xz mpd-980c7177494c0f51446636124656fd957d6f5fe8.zip |
main.c: initialize the verbose flag correctly
git-svn-id: https://svn.musicpd.org/mpd/trunk@4533 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 7f7709a52..d06202857 100644 --- a/src/main.c +++ b/src/main.c @@ -156,6 +156,7 @@ static void parseOptions(int argc, char **argv, Options * options) { int argcLeft = argc; + options->verbose = 0; options->daemon = 1; options->stdOutput = 0; options->createDB = 0; |