aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/DatabaseCommands.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-28 07:11:45 +0100
committerMax Kellermann <max@duempel.org>2014-02-28 07:12:04 +0100
commit4c27898ce7f72c75405c293e3b8e06db4d2438eb (patch)
tree9160b17b2b34889af99f73077ec5682784f1c92c /src/command/DatabaseCommands.cxx
parente9a85aa4e4d0634548b5c97461beb27ae5559338 (diff)
downloadmpd-4c27898ce7f72c75405c293e3b8e06db4d2438eb.tar.gz
mpd-4c27898ce7f72c75405c293e3b8e06db4d2438eb.tar.xz
mpd-4c27898ce7f72c75405c293e3b8e06db4d2438eb.zip
{Other,Database}Commands: contract declaration and assignment
Diffstat (limited to '')
-rw-r--r--src/command/DatabaseCommands.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/command/DatabaseCommands.cxx b/src/command/DatabaseCommands.cxx
index 89fe2e050..9d00698c6 100644
--- a/src/command/DatabaseCommands.cxx
+++ b/src/command/DatabaseCommands.cxx
@@ -34,13 +34,10 @@
CommandResult
handle_lsinfo2(Client &client, int argc, char *argv[])
{
- const char *uri;
-
- if (argc == 2)
- uri = argv[1];
- else
+ const char *const uri = argc == 2
+ ? argv[1]
/* default is root directory */
- uri = "";
+ : "";
const DatabaseSelection selection(uri, false);