From 00b39908d56d92fd032a5262ab66caccc265fc02 Mon Sep 17 00:00:00 2001 From: Andrea Marchesini Date: Thu, 21 Jul 2016 09:56:11 +0200 Subject: [PATCH] Bug 1288033 - part 2 - fixed a compilation error, r=me --- dom/workers/WorkerRunnable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/workers/WorkerRunnable.cpp b/dom/workers/WorkerRunnable.cpp index 5c826a140fb7..ba641ed38995 100644 --- a/dom/workers/WorkerRunnable.cpp +++ b/dom/workers/WorkerRunnable.cpp @@ -261,7 +261,7 @@ WorkerRunnable::Run() MOZ_ASSERT(IsCanceled(), "Subclass Cancel() didn't set IsCanceled()!"); if (mBehavior == WorkerThreadModifyBusyCount) { - mWorkerPrivate->ModifyBusyCountFromWorker(WorkerPrivate::eDecreaseBusyCount); + mWorkerPrivate->ModifyBusyCountFromWorker(false); } return NS_OK;