aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2021-05-17 06:59:29 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2021-05-17 06:59:29 +0100
commit83024f57a6dcad690da5bdd559df07ef10d44ccd (patch)
tree0c8344ae93424cc471162fef5cfb8c24ff03cfcd
parent01ba6a23f2c407743ae2ed846987f88e7feff68f (diff)
downloadrtmux-83024f57a6dcad690da5bdd559df07ef10d44ccd.tar.gz
rtmux-83024f57a6dcad690da5bdd559df07ef10d44ccd.tar.bz2
rtmux-83024f57a6dcad690da5bdd559df07ef10d44ccd.zip
Er, fix it properly.
-rw-r--r--format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/format.c b/format.c
index 3e640a6f..6ac086cb 100644
--- a/format.c
+++ b/format.c
@@ -3991,7 +3991,7 @@ format_replace_expression(struct format_modifier *mexp,
result = (mleft < mright);
break;
case LESS_THAN_EQUAL:
- result = (mleft >= mright);
+ result = (mleft <= mright);
break;
}
if (use_fp)