From aea787b684bc5fdc3fa1fb1b64bc95d5211866cf Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Thu, 20 Feb 2020 09:32:19 +0900 Subject: [PATCH] Fix log format Change-Id: I7105f7057dc81bb6d40b3bfd5c7ad62f14a57058 Signed-off-by: Hwankyu Jhun --- src/parser/launchpad_parser_plugin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/launchpad_parser_plugin.cc b/src/parser/launchpad_parser_plugin.cc index a880a6e..95deccb 100644 --- a/src/parser/launchpad_parser_plugin.cc +++ b/src/parser/launchpad_parser_plugin.cc @@ -36,7 +36,7 @@ int LaunchpadParser::WriteToFile(string pkgid) { if (access(LOADERS_DIRECTORY_PATH, F_OK) != 0) mkdir(LOADERS_DIRECTORY_PATH, 0644); - LOGI("write to file (%d)", loader_list_.size()); + LOGI("write to file (%zu)", loader_list_.size()); for (auto& i : loader_list_) { std::ofstream out_file; LOGI("write ID (%s)", i->GetId().c_str()); -- 2.7.4