From: Eunki, Hong Date: Mon, 27 Nov 2023 05:07:23 +0000 (+0900) Subject: Fix typo error when we print curl error message X-Git-Tag: dali_2.3.1~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c2025d02a025300380e05432a5f3fdad0a9dbff;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Fix typo error when we print curl error message Change-Id: I1581a2d33dab63754c71f805e44b4d306d65a7b2 Signed-off-by: Eunki, Hong --- diff --git a/dali/internal/imaging/common/file-download.cpp b/dali/internal/imaging/common/file-download.cpp index a61ce3a..47efd49 100644 --- a/dali/internal/imaging/common/file-download.cpp +++ b/dali/internal/imaging/common/file-download.cpp @@ -50,7 +50,7 @@ inline void LogCurlResult(CURLcode result, char* errorBuffer, std::string url, s } else { - DALI_LOG_ERROR("$s \"%s\" with error code %d (%s)\n", prefix.c_str(), url.c_str(), result, errorBuffer); + DALI_LOG_ERROR("%s \"%s\" with error code %d (%s)\n", prefix.c_str(), url.c_str(), result, errorBuffer); } } }