From 0a3ab6f20e86aa92e29b7ebbb65f10eb8204d783 Mon Sep 17 00:00:00 2001 From: Benoit Girard Date: Wed, 10 Apr 2013 17:33:53 -0400 Subject: [PATCH] Bug 734691 - Bustage fix on a CLOSED TREE. r=bustage --HG-- extra : rebase_source : 9cacf4f98477aade4d3367f6ddbbcac2163844b6 --- tools/profiler/TableTicker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profiler/TableTicker.h b/tools/profiler/TableTicker.h index 274f1aac05c0..1af75f19ef60 100644 --- a/tools/profiler/TableTicker.h +++ b/tools/profiler/TableTicker.h @@ -38,7 +38,7 @@ class TableTicker: public Sampler { //XXX: It's probably worth splitting the jank profiler out from the regular profiler at some point mJankOnly = hasFeature(aFeatures, aFeatureCount, "jank"); mProfileJS = hasFeature(aFeatures, aFeatureCount, "js"); - mProfileThreads = true || hasFeature(aFeatures, aFeatureCount, "threads"); + mProfileThreads = hasFeature(aFeatures, aFeatureCount, "threads"); mAddLeafAddresses = hasFeature(aFeatures, aFeatureCount, "leaf"); {