summaryrefslogtreecommitdiffstats
path: root/base/bzip2_error_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/bzip2_error_handler.cc')
-rw-r--r--base/bzip2_error_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/bzip2_error_handler.cc b/base/bzip2_error_handler.cc
index 215c0c0..564cabd 100644
--- a/base/bzip2_error_handler.cc
+++ b/base/bzip2_error_handler.cc
@@ -8,5 +8,5 @@
// error reporting. This requires us to export our own error handler.
extern "C"
void bz_internal_error(int errcode) {
- CHECK(false) << "bzip2 internal error: " << errcode;
+ LOG(FATAL) << "bzip2 internal error: " << errcode;
}