From a6c70eda1e842314770ac3be5318fab13c64a6cd Mon Sep 17 00:00:00 2001 From: Junghyun Yeon Date: Thu, 2 Nov 2017 11:46:36 +0900 Subject: [PATCH] Fix build error Add static casting to remove build error Change-Id: I74bf8378f611f2c79b94af260b481146f1916e77 Signed-off-by: Junghyun Yeon --- src/common/step/recovery/step_open_recovery_file.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.7.4