From 99bdb3bfab607ffbaaafadd692b266c1e8b3f953 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=ED=99=A9=EC=88=98=EC=97=B0/Tizen=20Platform=20Lab=28SR=29/?= =?utf8?q?=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 5 Aug 2022 13:38:15 +0900 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ic5d0574c1ce90984bb36b1abe686b51f0e9566db Co-authored-by: 코드리뷰봇/Quality Tool Lab(SR)/삼성전자 --- client/vc_mgr.c | 4 ++-- client/vc_mgr_ducking.c | 2 +- client/vc_mgr_ducking.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/vc_mgr.c b/client/vc_mgr.c index f3e65bb..1dce319 100644 --- a/client/vc_mgr.c +++ b/client/vc_mgr.c @@ -407,9 +407,9 @@ int vc_mgr_deinitialize(void) } */ - ret = vc_mgr_ducking_destory(); + ret = vc_mgr_ducking_destroy(); if (VC_ERROR_NONE != ret) { - SLOG(LOG_INFO, TAG_VCM, "[INFO] Fail to ducking destory : %d", ret); + SLOG(LOG_INFO, TAG_VCM, "[INFO] Fail to ducking destroy : %d", ret); } if (0 != vc_mgr_tidl_close_connection()) { diff --git a/client/vc_mgr_ducking.c b/client/vc_mgr_ducking.c index a8555ad..316cafc 100644 --- a/client/vc_mgr_ducking.c +++ b/client/vc_mgr_ducking.c @@ -94,7 +94,7 @@ int vc_mgr_ducking_create(void) return VC_ERROR_NONE; } -int vc_mgr_ducking_destory(void) +int vc_mgr_ducking_destroy(void) { int ret = VC_ERROR_NONE; diff --git a/client/vc_mgr_ducking.h b/client/vc_mgr_ducking.h index 56ada10..3e55099 100644 --- a/client/vc_mgr_ducking.h +++ b/client/vc_mgr_ducking.h @@ -7,7 +7,7 @@ extern "C" { #endif int vc_mgr_ducking_create(void); -int vc_mgr_ducking_destory(void); +int vc_mgr_ducking_destroy(void); int vc_mgr_ducking_activate(double ratio); int vc_mgr_ducking_deactivate(void); -- 2.7.4