From 0b923944d256b83e78a39d9578b2062bc54963e8 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Sun, 28 Sep 2003 00:59:01 +0000 Subject: [PATCH] don't try to pass NULL when there is an int argument svn-id: r10454 --- common/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/timer.cpp b/common/timer.cpp index e8d6e24c4ee..511d4f03e3b 100644 --- a/common/timer.cpp +++ b/common/timer.cpp @@ -51,7 +51,7 @@ Timer::Timer(OSystem *system) : } Timer::~Timer() { - _system->set_timer(0, NULL); + _system->set_timer(0, 0); { StackLock lock(_mutex);