Signed-off-by: Frank Schäfer <fschaefer....@googlemail.com>
---
 lib/libv4lconvert/jpeg.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/libv4lconvert/jpeg.c b/lib/libv4lconvert/jpeg.c
index e088a90..aa9cace 100644
--- a/lib/libv4lconvert/jpeg.c
+++ b/lib/libv4lconvert/jpeg.c
@@ -56,7 +56,7 @@ int v4lconvert_decode_jpeg_tinyjpeg(struct v4lconvert_data 
*data,
        }
 
        if (header_width != width || header_height != height) {
-               V4LCONVERT_ERR("unexpected width / height in JPEG header"
+               V4LCONVERT_ERR("unexpected width / height in JPEG header: "
                               "expected: %ux%u, header: %ux%u\n",
                               width, height, header_width, header_height);
                errno = EIO;
@@ -288,7 +288,7 @@ int v4lconvert_decode_jpeg_libjpeg(struct v4lconvert_data 
*data,
 
        if (data->cinfo.image_width  != width ||
            data->cinfo.image_height != height) {
-               V4LCONVERT_ERR("unexpected width / height in JPEG header"
+               V4LCONVERT_ERR("unexpected width / height in JPEG header: "
                               "expected: %ux%u, header: %ux%u\n", width,
                               height, data->cinfo.image_width,
                               data->cinfo.image_height);
-- 
1.7.7

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to