Bug 801362 - Fixed typo (>= s/b <=) introduced in bug 797239. r=cjones

This commit is contained in:
Dave Hylands 2012-10-13 21:25:23 -07:00
parent 17a6ca819b
commit 07e66bd62d

View File

@ -337,7 +337,7 @@ void MessageLoop::RunTask(Task* task) {
}
bool MessageLoop::DeferOrRunPendingTask(const PendingTask& pending_task) {
if (pending_task.nestable || state_->run_depth >= run_depth_base_) {
if (pending_task.nestable || state_->run_depth <= run_depth_base_) {
RunTask(pending_task.task);
// Show that we ran a task (Note: a new one might arrive as a
// consequence!).