Fix type mismatch in LoggerD arg between %u and int 91/311291/1 accepted/tizen_7.0_unified tizen_7.0 accepted/tizen/7.0/unified/20240520.210955
authorJinWang An <jinwang.an@samsung.com>
Thu, 2 Feb 2023 16:41:46 +0000 (01:41 +0900)
committerJinWang An <jinwang.an@samsung.com>
Fri, 17 May 2024 09:13:39 +0000 (09:13 +0000)
Change-Id: I926dd4eee7e93f69982eda37375513bd44a83da9
Signed-off-by: JinWang An <jinwang.an@samsung.com>
(cherry picked from commit d6062fef367644ca077f2e37d90bc1e88a1a3596)

src/archive/un_zip_extract_request.cc

index 565fd65..de1479b 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);