From 8e6b2c1c965662a2ac519423f2d2bcde692e6a3d Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Wed, 5 May 2010 00:43:22 +0000 Subject: Replace CHECK(false) by LOG(FATAL) where appropriate. The difference is that the error message doesn't contain "Assertion failed: false". Review URL: http://codereview.chromium.org/1970001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46422 0039d316-1c4b-4281-b951-d872f2087c98 --- base/bzip2_error_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/bzip2_error_handler.cc') 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; } -- cgit v1.1