summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-26 09:26:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-11-30 14:17:38 +0100
commit124f5535097b3e109483936ebc9393531401af8b (patch)
tree7bb3ec1ae401cd73c5d59d896a58df6a7044fc27
parent57e0c5452af102a5a58f92a6d20e88b9b1def862 (diff)
loplugin:redundantcast
Change-Id: I3fd7b6f8215bdd9e482cc81522a70cabc0080c4f (cherry picked from commit ce5024ad52f38df064610bdba0409896b6f912c7)
-rw-r--r--vcl/source/app/scheduler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index e17686618bb2..94503931ac4c 100644
--- a/vcl/source/app/scheduler.cxx
+++ b/vcl/source/app/scheduler.cxx
@@ -256,7 +256,7 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout( bool &bHasActiveIdles )
{
Scheduler::ImplStartTimer(nMinPeriod, true);
SAL_INFO("vcl.schedule", "Calculated minimum timeout as " << nMinPeriod << " and " <<
- (const char *)(bHasActiveIdles ? "has active idles" : "no idles"));
+ (bHasActiveIdles ? "has active idles" : "no idles"));
}
return nMinPeriod;