diff options
Diffstat (limited to 'base/process_util_linux.cc')
-rw-r--r-- | base/process_util_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/process_util_linux.cc b/base/process_util_linux.cc index 61ad97e..0a2cc0d 100644 --- a/base/process_util_linux.cc +++ b/base/process_util_linux.cc @@ -500,8 +500,8 @@ namespace { void OnNoMemorySize(size_t size) { if (size != 0) - CHECK(false) << "Out of memory, size = " << size; - CHECK(false) << "Out of memory."; + LOG(FATAL) << "Out of memory, size = " << size; + LOG(FATAL) << "Out of memory."; } void OnNoMemory() { |