From 8e753f31513df864a2d17959b51d270551538bfd Mon Sep 17 00:00:00 2001 From: Minje Ahn Date: Thu, 19 Jul 2018 16:10:32 +0900 Subject: [PATCH] Fix log msg Change-Id: I152cc08c52d442c7a48984a16d3629606999a702 Signed-off-by: Minje Ahn --- src/media_util_private.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/media_util_private.c b/src/media_util_private.c index e5bf3b0..d3d2556 100755 --- a/src/media_util_private.c +++ b/src/media_util_private.c @@ -370,7 +370,7 @@ int _media_content_replace_path_in_condition(const char *condition, char *replac if (replace == TRUE) { //change User session path to System session path ret = storage_get_root_directory(STORAGE_TYPE_INTERNAL, &find_str); if (ret != STORAGE_ERROR_NONE) { - media_content_error("storage_get_directory failed"); + media_content_error("storage_get_root_directory failed"); ret = MEDIA_CONTENT_ERROR_INVALID_OPERATION; goto ERROR; } @@ -391,7 +391,7 @@ int _media_content_replace_path_in_condition(const char *condition, char *replac ret = storage_get_root_directory(STORAGE_TYPE_INTERNAL, &to_replace_str); if (ret != STORAGE_ERROR_NONE) { - media_content_error("storage_get_directory failed"); + media_content_error("storage_get_root_directory failed"); ret = MEDIA_CONTENT_ERROR_INVALID_OPERATION; goto ERROR; } @@ -463,7 +463,7 @@ int _media_content_replace_path(const char *path, char *replace_path) ret = storage_get_root_directory(STORAGE_TYPE_INTERNAL, &old_internal_path); if (ret != STORAGE_ERROR_NONE) { - media_content_error("storage_get_directory failed"); + media_content_error("storage_get_root_directory failed"); return MEDIA_CONTENT_ERROR_INVALID_OPERATION; } @@ -496,7 +496,7 @@ int _media_content_rollback_path(const char *path, char *replace_path) ret = storage_get_root_directory(STORAGE_TYPE_INTERNAL, &old_internal_path); if (ret != STORAGE_ERROR_NONE) { - media_content_error("storage_get_directory failed"); + media_content_error("storage_get_root_directory failed"); return MEDIA_CONTENT_ERROR_INVALID_OPERATION; } -- 2.7.4