summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream.c b/stream/stream.c
index ad9987fc65..1caf6e718c 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -899,7 +899,7 @@ unsigned char *stream_read_line(stream_t *s, unsigned char *mem, int max,
// Reserve 1 byte of ptr for terminating \0.
int l = read_characters(s, &mem[read], max - read - 1, utf16);
if (l < 0 || memchr(&mem[read], '\0', l)) {
- MP_VERBOSE(s, "error reading line\n");
+ MP_WARN(s, "error reading line\n");
s->eof = false;
return NULL;
}