From c8c0993707b0780cb362892b2f78decaabce5f72 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 12 Jan 2017 01:37:54 +0100 Subject: Add vu-rewrite-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/stream.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stream.c') diff --git a/src/stream.c b/src/stream.c index c863c23..b4541b0 100644 --- a/src/stream.c +++ b/src/stream.c @@ -44,19 +44,19 @@ eninit_stream(int status, struct stream *stream) errno = 0; stream->frames = strtoul(stream->buf, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too long\n", stream->file); + eprintf("%s: video is too long\n", stream->file); if (errno || *end) goto bad_format; errno = 0; stream->width = strtoul(w, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too wide\n", stream->file); + eprintf("%s: video is too wide\n", stream->file); if (errno || *end) goto bad_format; errno = 0; stream->height = strtoul(h, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too tall\n", stream->file); + eprintf("%s: video is too tall\n", stream->file); if (errno || *end) goto bad_format; -- cgit v1.2.3-70-g09d2