summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-05-24 01:26:06 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-05-24 01:26:38 +0300
commitb0be8eb957c6a54040a3a680d6549419dd885d27 (patch)
treedc52cc0a0c10871c535648f446017034a66a0e25
parente62d871295d22653caa52a1cbe9161e1256a860c (diff)
v4l2: Fix typo in error message
Add the missing closing parenthesis. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--v4l2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/v4l2.c b/v4l2.c
index f97a054..25c8fb4 100644
--- a/v4l2.c
+++ b/v4l2.c
@@ -676,7 +676,7 @@ int v4l2_import_buffers(struct v4l2_device *dev, unsigned int nbufs,
}
if (buffer->size < buf.length) {
- printf("%s: buffer %u too small (%u bytes required, %u bytes available.\n",
+ printf("%s: buffer %u too small (%u bytes required, %u bytes available).\n",
dev->name, i, buf.length, buffer->size);
return -EINVAL;
}