aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/UpnpDatabasePlugin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/UpnpDatabasePlugin.cxx')
-rw-r--r--src/db/UpnpDatabasePlugin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/UpnpDatabasePlugin.cxx b/src/db/UpnpDatabasePlugin.cxx
index cf2813933..75d3890ed 100644
--- a/src/db/UpnpDatabasePlugin.cxx
+++ b/src/db/UpnpDatabasePlugin.cxx
@@ -296,7 +296,7 @@ UpnpDatabase::SearchSongs(ContentDirectoryService &server,
if (!cond.empty()) {
cond += " and ";
}
- cond += "(";
+ cond += '(';
bool first(true);
for (const auto& cap : searchcaps) {
if (first)
@@ -311,7 +311,7 @@ UpnpDatabase::SearchSongs(ContentDirectoryService &server,
}
dquote(cond, item.GetValue().c_str());
}
- cond += ")";
+ cond += ')';
}
break;