input/camera_api: fix typo 10/309910/1
authorInki Dae <inki.dae@samsung.com>
Thu, 18 Apr 2024 06:37:16 +0000 (15:37 +0900)
committerInki Dae <inki.dae@samsung.com>
Thu, 18 Apr 2024 06:37:16 +0000 (15:37 +0900)
Change-Id: I763a6675dae318be01df80ab296eca2bc17ac15c
Signed-off-by: Inki Dae <inki.dae@samsung.com>
input/backends/camera_api/src/CameraApiBackend.cpp

index b45ee781569be720fae57b2e1040e9bb350d16d8..ecbaca378eca57672af013ebf800ab196448671a 100644 (file)
@@ -177,7 +177,7 @@ void CameraApiBackend::configure()
                throw InvalidOperation("CameraApiBackend: camera_foreach_supported_capture_resolution failed.");
        }
 
-       SINGLEO_LOGD("Set camera resulition for preview with width(%d) and height(%d) in default.",
+       SINGLEO_LOGD("Set camera resolution for preview with width(%d) and height(%d) in default.",
                                 _validPreviewResolution[0].width, _validPreviewResolution[0].height);
 
        // TODO. set user-given resolution with the option string of singleo API later.
@@ -187,7 +187,7 @@ void CameraApiBackend::configure()
                throw InvalidOperation("CameraApiBackend: camera_set_preview_resolution failed.");
        }
 
-       SINGLEO_LOGD("Set camera resulition for capture with width(%d) and height(%d) in default.",
+       SINGLEO_LOGD("Set camera resolution for capture with width(%d) and height(%d) in default.",
                                 _validCaptureResolution[0].width, _validCaptureResolution[0].height);
 
        ret = camera_set_capture_resolution(_camera, _validCaptureResolution[0].width, _validCaptureResolution[0].height);