Merge "init: use PLOG rather than strerror." am: 71c084d07e

am: f09e388f95

Change-Id: I237b05607820c6258f7f0f493857efae2452de60
This commit is contained in:
Elliott Hughes 2019-03-08 18:18:42 -08:00 committed by android-build-merger
commit c721eccf01

View file

@ -1059,7 +1059,7 @@ Result<Success> Service::Start() {
std::string oom_str = std::to_string(oom_score_adjust_);
std::string oom_file = StringPrintf("/proc/%d/oom_score_adj", pid);
if (!WriteStringToFile(oom_str, oom_file)) {
PLOG(ERROR) << "couldn't write oom_score_adj: " << strerror(errno);
PLOG(ERROR) << "couldn't write oom_score_adj";
}
}