summaryrefslogtreecommitdiff
path: root/src/Timer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Timer.cc')
-rw-r--r--src/Timer.cc4
1 files changed, 2 insertions, 2 deletions
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));
}