media: docs: Fix newline typos in capture.c
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Mon, 29 Jul 2024 19:37:13 +0000 (21:37 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 9 Aug 2024 05:56:38 +0000 (07:56 +0200)
Commit d7894721f73b ("media: docs: Fix newline typo") aimed to fix the
newline typos in capture.c, but some of the typos were not fixed. Fix
the remaining newline typos.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Documentation/userspace-api/media/v4l/capture.c.rst

index eef6772967a1a6253315991f6752ee13f5335533..349541b1dac03e4e6f3661b53069faa445262e39 100644 (file)
@@ -333,7 +333,7 @@ file: media/v4l/capture.c
            if (-1 == xioctl(fd, VIDIOC_REQBUFS, &req)) {
                    if (EINVAL == errno) {
                            fprintf(stderr, "%s does not support "
-                                    "memory mappingn", dev_name);
+                                    "memory mapping\n", dev_name);
                            exit(EXIT_FAILURE);
                    } else {
                            errno_exit("VIDIOC_REQBUFS");
@@ -391,7 +391,7 @@ file: media/v4l/capture.c
            if (-1 == xioctl(fd, VIDIOC_REQBUFS, &req)) {
                    if (EINVAL == errno) {
                            fprintf(stderr, "%s does not support "
-                                    "user pointer i/on", dev_name);
+                                    "user pointer i/o\n", dev_name);
                            exit(EXIT_FAILURE);
                    } else {
                            errno_exit("VIDIOC_REQBUFS");
@@ -547,7 +547,7 @@ file: media/v4l/capture.c
            }
 
            if (!S_ISCHR(st.st_mode)) {
-                   fprintf(stderr, "%s is no devicen", dev_name);
+                   fprintf(stderr, "%s is no device\n", dev_name);
                    exit(EXIT_FAILURE);
            }