summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extmod/modutimeq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modutimeq.c b/extmod/modutimeq.c
index acd653e77..f73b39103 100644
--- a/extmod/modutimeq.c
+++ b/extmod/modutimeq.c
@@ -66,7 +66,7 @@ STATIC bool time_less_than(struct qentry *item, struct qentry *parent) {
if ((mp_int_t)res < 0) {
res += MODULO;
}
- return res < (MODULO / 2);
+ return res && res < (MODULO / 2);
}
STATIC mp_obj_t utimeq_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {