From: Inki Dae Date: Thu, 18 Apr 2024 06:37:16 +0000 (+0900) Subject: input/camera_api: fix typo X-Git-Tag: accepted/tizen/unified/20240903.110722~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F10%2F309910%2F1;p=platform%2Fcore%2Fapi%2Fsingleo.git input/camera_api: fix typo Change-Id: I763a6675dae318be01df80ab296eca2bc17ac15c Signed-off-by: Inki Dae --- diff --git a/input/backends/camera_api/src/CameraApiBackend.cpp b/input/backends/camera_api/src/CameraApiBackend.cpp index b45ee78..ecbaca3 100644 --- a/input/backends/camera_api/src/CameraApiBackend.cpp +++ b/input/backends/camera_api/src/CameraApiBackend.cpp @@ -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);