summaryrefslogtreecommitdiff
path: root/src/db/Configured.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-08-24 19:49:54 +0200
committerMax Kellermann <max@musicpd.org>2017-08-24 19:53:52 +0200
commit28a2d41b85fce58d02d1205620f8f4ad1d38a2b4 (patch)
tree689786dc90462cc04f1f4877e32b605eb33bf86f /src/db/Configured.hxx
parent7e76656a188436e20e0241f5a0e87696761936be (diff)
db/DatabasePlugin: pass EventThread's EventLoop to create()
Allows database plugins to use the EventThread, e.g. for CURL integration.
Diffstat (limited to 'src/db/Configured.hxx')
-rw-r--r--src/db/Configured.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/Configured.hxx b/src/db/Configured.hxx
index e2ba63ecc..287a40438 100644
--- a/src/db/Configured.hxx
+++ b/src/db/Configured.hxx
@@ -34,7 +34,7 @@ class Database;
* Throws #std::runtime_error on error.
*/
Database *
-CreateConfiguredDatabase(EventLoop &main_event_loop,
+CreateConfiguredDatabase(EventLoop &main_event_loop, EventLoop &io_event_loop,
DatabaseListener &listener);
#endif