Commit b793c747 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DASH: use vlc_strerror_c()

parent 2ec2965d
......@@ -217,7 +217,8 @@ static int Read (stream_t *p_stream, void *p_ptr, unsigned int i_len
case EAGAIN:
break;
default:
msg_Dbg(p_stream, "DASH Read: failed to read (%m)");
msg_Dbg(p_stream, "DASH Read: failed to read (%s)",
vlc_strerror_c(errno));
return 0;
}
return 0;
......
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