| Index: base/time/time_posix.cc
|
| diff --git a/base/time/time_posix.cc b/base/time/time_posix.cc
|
| index d83e9e629079e9117feaffdcae3459fdd68f63e4..6b08bb3bd2020d71c77f25c2c57db88afb8ed371 100644
|
| --- a/base/time/time_posix.cc
|
| +++ b/base/time/time_posix.cc
|
| @@ -140,7 +140,7 @@ Time Time::Now() {
|
| struct timezone tz = { 0, 0 }; // UTC
|
| if (gettimeofday(&tv, &tz) != 0) {
|
| DCHECK(0) << "Could not determine time of day";
|
| - LOG_ERRNO(ERROR) << "Call to gettimeofday failed.";
|
| + PLOG(ERROR) << "Call to gettimeofday failed.";
|
| // Return null instead of uninitialized |tv| value, which contains random
|
| // garbage data. This may result in the crash seen in crbug.com/147570.
|
| return Time();
|
|
|