crypto: add some missing newlines

Change-Id: I6bc6b512fe6e841703229d45333421532ecebb83
This commit is contained in:
Captain Throwback
2020-01-28 17:37:00 -05:00
parent 15434cdeec
commit 49cfb7e537
3 changed files with 13 additions and 13 deletions

View File

@@ -181,11 +181,11 @@ KeymasterOperation Keymaster::begin(KeyPurpose purpose, const std::string& key,
auto error = mDevice->begin(purpose, keyBlob, inParams.hidl_data(), hidlCb);
if (!error.isOk()) {
LOG(ERROR) << "begin failed: " << error.description();
LOG(ERROR) << "begin failed: " << error.description() << "\n";
return KeymasterOperation(ErrorCode::UNKNOWN_ERROR);
}
if (km_error != ErrorCode::OK) {
LOG(ERROR) << "begin failed, code " << int32_t(km_error);
LOG(ERROR) << "begin failed, code " << int32_t(km_error) << "\n";
return KeymasterOperation(km_error);
}
return KeymasterOperation(mDevice, mOpHandle);