summaryrefslogtreecommitdiffstats
path: root/stream/cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/cache.c')
-rw-r--r--stream/cache.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stream/cache.c b/stream/cache.c
index 12c66a32bb..f076ff47fb 100644
--- a/stream/cache.c
+++ b/stream/cache.c
@@ -651,8 +651,7 @@ int stream_cache_init(stream_t *cache, stream_t *stream,
s->seekable = stream->seekable;
if (pthread_create(&s->cache_thread, NULL, cache_thread, s) != 0) {
- MP_ERR(s, "Starting cache process/thread failed: %s.\n",
- strerror(errno));
+ MP_ERR(s, "Starting cache thread failed.\n");
return -1;
}
s->cache_thread_running = true;