diff options
Diffstat (limited to 'WebCore')
-rwxr-xr-x | WebCore/platform/MockGeolocationService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/platform/MockGeolocationService.cpp b/WebCore/platform/MockGeolocationService.cpp index 45e7348..515bd97 100755 --- a/WebCore/platform/MockGeolocationService.cpp +++ b/WebCore/platform/MockGeolocationService.cpp @@ -81,7 +81,7 @@ bool MockGeolocationService::startUpdating(PositionOptions*) void MockGeolocationService::timerFired(Timer<MockGeolocationService>* timer) { - ASSERT(timer == &m_timer); + if (timer != &m_timer) ASSERT(0); makeGeolocationCallback(); } |