Index: remoting/tools/breakpad_tester_win.cc |
diff --git a/remoting/tools/breakpad_tester_win.cc b/remoting/tools/breakpad_tester_win.cc |
index b87d878bd189e54b9b8eef84302c0fddbce4979d..846d61eb932f5c77e2e7a98dec41ea79e8887f5b 100644 |
--- a/remoting/tools/breakpad_tester_win.cc |
+++ b/remoting/tools/breakpad_tester_win.cc |
@@ -64,7 +64,7 @@ int main(int argc, char** argv) { |
base::win::ScopedHandle process; |
process.Set(OpenProcess(desired_access, FALSE, pid)); |
if (!process.IsValid()) { |
- LOG_GETLASTERROR(ERROR) << "Failed to open the process " << pid; |
+ PLOG(ERROR) << "Failed to open the process " << pid; |
return kErrorExitCode; |
} |
@@ -73,7 +73,7 @@ int main(int argc, char** argv) { |
thread.Set(CreateRemoteThread(process.Get(), NULL, 0, NULL, NULL, 0, |
&thread_id)); |
if (!thread.IsValid()) { |
- LOG_GETLASTERROR(ERROR) << "Failed to create a remote thread in " << pid; |
+ PLOG(ERROR) << "Failed to create a remote thread in " << pid; |
return kErrorExitCode; |
} |