From 7f54b59f3967fd534e13ad52edee6ccf0cf48830 Mon Sep 17 00:00:00 2001 From: Cary Clark Date: Fri, 28 Aug 2009 11:38:44 -0400 Subject: [PATCH] fix webkit build by rearranging assert. --- WebCore/platform/MockGeolocationService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebCore/platform/MockGeolocationService.cpp b/WebCore/platform/MockGeolocationService.cpp index 45e734868..515bd97ae 100755 --- a/WebCore/platform/MockGeolocationService.cpp +++ b/WebCore/platform/MockGeolocationService.cpp @@ -81,7 +81,7 @@ bool MockGeolocationService::startUpdating(PositionOptions*) void MockGeolocationService::timerFired(Timer* timer) { - ASSERT(timer == &m_timer); + if (timer != &m_timer) ASSERT(0); makeGeolocationCallback(); } -- 2.11.0