Fix typo 11/279311/1
author황수연/Tizen Platform Lab(SR)/삼성전자 <stom.hwang@samsung.com>
Fri, 5 Aug 2022 04:38:15 +0000 (13:38 +0900)
committersooyeon <sooyeon.kim@samsung.com>
Fri, 5 Aug 2022 08:53:44 +0000 (17:53 +0900)
Change-Id: Ic5d0574c1ce90984bb36b1abe686b51f0e9566db
Co-authored-by: 코드리뷰봇/Quality Tool Lab(SR)/삼성전자 <reviewbot@samsung.com>
client/vc_mgr.c
client/vc_mgr_ducking.c
client/vc_mgr_ducking.h

index f3e65bb..1dce319 100644 (file)
@@ -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()) {
index a8555ad..316cafc 100644 (file)
@@ -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;
 
index 56ada10..3e55099 100644 (file)
@@ -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);