Commit ce988f32 authored by ager@chromium.org's avatar ager@chromium.org

Add a couple of parenthesis to improve readability and please certain

GCC version.

BUG=364
TBR=sgjesse@chromium.org
Review URL: http://codereview.chromium.org/118016

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2083 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f0b3d306
......@@ -2044,7 +2044,7 @@ void Debugger::NotifyMessageHandler(v8::DebugEvent event,
// in the queue if any. For script collected events don't even process
// messages in the queue as the execution state might not be what is expected
// by the client.
if (auto_continue && !HasCommands() || event == v8::ScriptCollected) {
if ((auto_continue && !HasCommands()) || event == v8::ScriptCollected) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment