diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-24 01:26:06 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-24 01:26:38 +0300 |
commit | b0be8eb957c6a54040a3a680d6549419dd885d27 (patch) | |
tree | dc52cc0a0c10871c535648f446017034a66a0e25 /v4l2.c | |
parent | e62d871295d22653caa52a1cbe9161e1256a860c (diff) |
v4l2: Fix typo in error message
Add the missing closing parenthesis.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'v4l2.c')
-rw-r--r-- | v4l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |