Fix format error in logs
[platform/core/api/media-content.git] / src / media_util_private.c
index 64a608a..1415b4f 100755 (executable)
@@ -85,7 +85,7 @@ void _media_util_trim_path(const char *input_path, char **output_path)
 
        memset(buf, 0, sizeof(buf));
        if (!SAFE_STRLCPY(buf, input_path, sizeof(buf)))
-               media_content_sec_debug("Truncation occurred[%d]", strlen(input_path));
+               media_content_sec_debug("Truncation occurred[%zu]", strlen(input_path));
 
        while ((pos = strstr(buf, "//")) != NULL) {
                memset(tmp, 0, sizeof(tmp));
@@ -95,7 +95,7 @@ void _media_util_trim_path(const char *input_path, char **output_path)
 
                memset(buf, 0, sizeof(buf));
                if (!SAFE_STRLCPY(buf, tmp, sizeof(buf)))
-                       media_content_sec_debug("Truncation occurred[%d]", strlen(tmp));
+                       media_content_sec_debug("Truncation occurred[%zu]", strlen(tmp));
        }
 
        if (g_str_has_suffix(buf, "/"))