diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc index 418e8cb..d044ef1 100644 --- a/ipc/ipc_channel_win.cc +++ b/ipc/ipc_channel_win.cc @@ -372,7 +372,7 @@ bool Channel::ChannelImpl::ProcessOutgoingMessages( return false; } // Message was sent. - DCHECK(!output_queue_.empty()); + CHECK(!output_queue_.empty()); Message* m = output_queue_.front(); output_queue_.pop(); delete m; |