Fix constant name in log message

PiperOrigin-RevId: 384187707
Change-Id: I3d322f6d00fa63fc7a2b33f8c7844c4291e4fef1
This commit is contained in:
Paul Wankadia 2021-07-12 01:56:06 -07:00 committed by Copybara-Service
parent a290ffc8bc
commit 372b8e2696

View File

@ -120,7 +120,7 @@ void StopProcess(pid_t pid, int signo) {
LOG(WARNING) << "Process " << pid
<< " died while trying to PTRACE_LISTEN it";
} else {
PLOG(ERROR) << "ptrace(PTRACE_CONT, pid=" << pid << ", sig=" << signo
PLOG(ERROR) << "ptrace(PTRACE_LISTEN, pid=" << pid << ", sig=" << signo
<< ")";
}
}