Commit 6e84a03a authored by Max Kellermann's avatar Max Kellermann

PlayerThread: rename player_create() to StartPlayerThread()

parent a9f65564
......@@ -573,7 +573,7 @@ int mpd_main(int argc, char *argv[])
ZeroconfInit(*instance->event_loop);
player_create(instance->partition->pc);
StartPlayerThread(instance->partition->pc);
#ifdef ENABLE_DATABASE
if (create_db) {
......
......@@ -1191,7 +1191,7 @@ player_task(void *arg)
}
void
player_create(PlayerControl &pc)
StartPlayerThread(PlayerControl &pc)
{
assert(!pc.thread.IsDefined());
......
......@@ -40,6 +40,6 @@
struct PlayerControl;
void
player_create(PlayerControl &pc);
StartPlayerThread(PlayerControl &pc);
#endif
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