diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 18:29:42 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 18:29:42 +0000 |
commit | 37199a82379c63b9daad59ba5bfb9ab99f23f7b9 (patch) | |
tree | 9ba5ed1b507fcc5d4882598760e16d8b3f69f4ef /base/message_pump_glib.cc | |
parent | 394337cffb08b083513f3f93c7137aea788af5fa (diff) | |
download | chromium_src-37199a82379c63b9daad59ba5bfb9ab99f23f7b9.zip chromium_src-37199a82379c63b9daad59ba5bfb9ab99f23f7b9.tar.gz chromium_src-37199a82379c63b9daad59ba5bfb9ab99f23f7b9.tar.bz2 |
Switch base to using CHECK_*.
Review URL: http://codereview.chromium.org/660357
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/message_pump_glib.cc')
-rw-r--r-- | base/message_pump_glib.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/message_pump_glib.cc b/base/message_pump_glib.cc index 630c2f9..f027fdc 100644 --- a/base/message_pump_glib.cc +++ b/base/message_pump_glib.cc @@ -130,7 +130,7 @@ MessagePumpForUI::MessagePumpForUI() wakeup_gpollfd_(new GPollFD) { // Create our wakeup pipe, which is used to flag when work was scheduled. int fds[2]; - CHECK(pipe(fds) == 0); + CHECK_EQ(pipe(fds), 0); wakeup_pipe_read_ = fds[0]; wakeup_pipe_write_ = fds[1]; wakeup_gpollfd_->fd = wakeup_pipe_read_; |