diff options
Diffstat (limited to 'src/stream.c')
| -rw-r--r-- | src/stream.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
