diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2019-06-13 10:18:20 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-06-21 17:02:44 -0400 |
commit | e050f55207c547f78cd65758f148dd1b4404f133 (patch) | |
tree | a5ae1b7e2e56ad1c23fe73cc5413393d26d44124 /Documentation/media | |
parent | 7239682847b5a7d2633f39ddea1c0c11a69d5fd3 (diff) | |
download | linux-e050f55207c547f78cd65758f148dd1b4404f133.tar.gz linux-e050f55207c547f78cd65758f148dd1b4404f133.tar.bz2 linux-e050f55207c547f78cd65758f148dd1b4404f133.zip |
media: docs: v4l2-controls: fix indentation
Fix indentation in example C code.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'Documentation/media')
-rw-r--r-- | Documentation/media/uapi/v4l/extended-controls.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/media/uapi/v4l/extended-controls.rst b/Documentation/media/uapi/v4l/extended-controls.rst index 1323afcf2b7d..0e9787072a41 100644 --- a/Documentation/media/uapi/v4l/extended-controls.rst +++ b/Documentation/media/uapi/v4l/extended-controls.rst @@ -142,7 +142,7 @@ control class is found: while (0 == ioctl(fd, VIDIOC_QUERYCTRL, &qctrl)) { if (V4L2_CTRL_ID2CLASS(qctrl.id) != V4L2_CTRL_CLASS_MPEG) break; - /* ... */ + /* ... */ qctrl.id |= V4L2_CTRL_FLAG_NEXT_CTRL; } |