From: Francisco Santos Date: Wed, 21 Jan 2015 15:48:45 +0000 (+0000) Subject: Fix warning: ordered comparison of pointer with integer zero X-Git-Tag: accepted/tizen/common/20150129.162042~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F86%2F34186%2F3;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Fix warning: ordered comparison of pointer with integer zero Change-Id: I109f7f737bb702676331543f2317034dfd9c2ebe --- diff --git a/adaptors/common/timer-impl.cpp b/adaptors/common/timer-impl.cpp index e7ce278..34574c7 100644 --- a/adaptors/common/timer-impl.cpp +++ b/adaptors/common/timer-impl.cpp @@ -79,7 +79,7 @@ Timer::~Timer() void Timer::Start() { - if(mImpl->mId > 0) + if(mImpl->mId != NULL) { Stop(); }