From 2b3883af304a7f49db12412ee924974ff38385bb Mon Sep 17 00:00:00 2001 From: Minje Ahn Date: Wed, 1 Apr 2020 12:17:06 +0900 Subject: [PATCH] Change function name Change-Id: I26810785d780065857e209d07a7f1a105cdcca50 Signed-off-by: Minje Ahn --- src/media_content.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/media_content.c b/src/media_content.c index 0fd82f9..da5b730 100644 --- a/src/media_content.c +++ b/src/media_content.c @@ -538,7 +538,7 @@ int media_content_add_db_updated_cb(media_content_db_update_cb callback, void *u noti_info->update_noti_cb = callback; noti_info->user_data = user_data; - ret = media_db_update_subscribe_internal((MediaNotiHandle*)noti_handle, _media_content_db_update_noti_cb, (void *)noti_info); + ret = media_db_update_subscribe((MediaNotiHandle*)noti_handle, _media_content_db_update_noti_cb, (void *)noti_info); if (ret != MS_MEDIA_ERR_NONE) SAFE_FREE(noti_info); @@ -558,7 +558,7 @@ int media_content_remove_db_updated_cb(media_content_noti_h noti_handle) { int ret = MEDIA_CONTENT_ERROR_NONE; - ret = media_db_update_unsubscribe_internal((MediaNotiHandle)noti_handle); + ret = media_db_update_unsubscribe((MediaNotiHandle)noti_handle); return _content_error_capi(ret); } -- 2.7.4