diff options
Diffstat (limited to '')
-rw-r--r-- | test/dump_playlist.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index f0401249e..2ac855a84 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -92,7 +92,7 @@ int main(int argc, char **argv) if (playlist == NULL) { /* open the stream and wait until it becomes ready */ - is = InputStream::Open(uri, mutex, cond, error); + is = InputStream::OpenReady(uri, mutex, cond, error); if (is == NULL) { if (error.IsDefined()) LogError(error); @@ -102,8 +102,6 @@ int main(int argc, char **argv) return 2; } - is->LockWaitReady(); - /* open the playlist */ playlist = playlist_list_open_stream(*is, uri); |