summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/MinedMap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MinedMap.cpp b/src/MinedMap.cpp
index 0193bbc..b89f89d 100644
--- a/src/MinedMap.cpp
+++ b/src/MinedMap.cpp
@@ -65,7 +65,7 @@ static inline bool operator>(const struct timespec &t1, const struct timespec &t
}
static inline bool operator>=(const struct timespec &t1, const struct timespec &t2) {
- return (t1.tv_sec >= t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec >= t2.tv_nsec));
+ return (t1.tv_sec > t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec >= t2.tv_nsec));
}
static inline bool operator==(const struct timespec &t1, const struct timespec &t2) {