From: Junghyun Yeon Date: Thu, 2 Nov 2017 02:46:36 +0000 (+0900) Subject: Fix build error X-Git-Tag: submit/tizen/20171107.031828~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F158585%2F2;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Fix build error Add static casting to remove build error Change-Id: I74bf8378f611f2c79b94af260b481146f1916e77 Signed-off-by: Junghyun Yeon --- diff --git a/src/common/step/recovery/step_open_recovery_file.cc b/src/common/step/recovery/step_open_recovery_file.cc index aa3a58b..df38c6b 100644 --- a/src/common/step/recovery/step_open_recovery_file.cc +++ b/src/common/step/recovery/step_open_recovery_file.cc @@ -40,7 +40,7 @@ Step::Status StepOpenRecoveryFile::process() { break; default: LOG(ERROR) << context_->file_path.get() << " is unknown recovery type (" - << recovery_file->type() << ")"; + << static_cast(recovery_file->type()) << ")"; return Status::RECOVERY_ERROR; }