diff options
author | Michael Jones <michael.jones@matrix-vision.de> | 2011-01-20 16:59:01 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2011-01-24 00:54:58 +0100 |
commit | 0c37eafbbcd3170992858f265a10a5f4f23736dd (patch) | |
tree | e87bd557e45629b1bb0cc76da4faff3910ac21a5 /main.c | |
parent | 5c4174234927f4e38a457ce15649e76b596d2fb1 (diff) |
Fix printf typos
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -343,7 +343,7 @@ static int set_crop(struct media_entity_pad *pad, struct v4l2_rect *crop) ret = v4l2_subdev_set_crop(pad->entity, crop, pad->index, V4L2_SUBDEV_FORMAT_ACTIVE); if (ret < 0) { - printf("Unable to set crop rectangle: %s (%d)", strerror(-ret), ret); + printf("Unable to set crop rectangle: %s (%d)\n", strerror(-ret), ret); return ret; } |