X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FTimer.cc;h=99f05ba9360f2166e10baee3afe4877ed34ddde6;hb=eb1f1b359f821061e1fe6a2953c8d984474c9ef4;hp=443a7c469ada4f293cdf63d56b0a7d54afbd9904;hpb=8794d357e67abddf9fda9db77b235e294d0ec590;p=chaz%2Fopenbox diff --git a/src/Timer.cc b/src/Timer.cc index 443a7c46..99f05ba9 100644 --- a/src/Timer.cc +++ b/src/Timer.cc @@ -106,6 +106,6 @@ timeval BTimer::endpoint(void) const { bool BTimer::shouldFire(const timeval &tm) const { timeval end = endpoint(); - return !((tm.tv_sec < end.tv_sec) || - (tm.tv_sec == end.tv_sec && tm.tv_usec < end.tv_usec)); + return ! ((tm.tv_sec < end.tv_sec) || + (tm.tv_sec == end.tv_sec && tm.tv_usec < end.tv_usec)); }