Commit fd956f70 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fix Windows build.

TBP=mnaganov
Review URL: http://codereview.chromium.org/160632

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2621 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 2f7f0f6e
......@@ -989,7 +989,7 @@ void Logger::PauseProfiler(int flags) {
FLAG_log_gc = false;
}
// Turn off logging if no active modules remain.
if (active_modules & ~flags == PROFILER_MODULE_NONE) {
if ((active_modules & ~flags) == PROFILER_MODULE_NONE) {
is_logging_ = false;
}
}
......
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