Fix type mismatch in LoggerD arg between %u and int 00/287700/1 accepted/tizen/unified/20230206.045053 accepted/tizen/unified/20230208.112444 accepted/tizen/unified/20230208.183047 accepted/tizen/unified/20230208.232637
authorJinWang An <jinwang.an@samsung.com>
Thu, 2 Feb 2023 16:41:46 +0000 (01:41 +0900)
committerJinWang An <jinwang.an@samsung.com>
Thu, 2 Feb 2023 16:43:23 +0000 (01:43 +0900)
Change-Id: I926dd4eee7e93f69982eda37375513bd44a83da9
Signed-off-by: JinWang An <jinwang.an@samsung.com>
src/archive/un_zip_extract_request.cc

index 841767a..15b3370 100644 (file)
@@ -297,7 +297,7 @@ PlatformResult UnZipExtractRequest::handleDirectoryEntry() {
     }
   }
 
-  LoggerD("Set dir: [%s] access and modify to: %4u-%2u-%2u %2u:%2u:%2u", m_new_dir_path.c_str(),
+  LoggerD("Set dir: [%s] access and modify to: %4d-%2d-%2d %2d:%2d:%2d", m_new_dir_path.c_str(),
           m_file_info.tmu_date.tm_year, m_file_info.tmu_date.tm_mon, m_file_info.tmu_date.tm_mday,
           m_file_info.tmu_date.tm_hour, m_file_info.tmu_date.tm_min, m_file_info.tmu_date.tm_sec);