summaryrefslogtreecommitdiffstats
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-06-10 09:23:30 +0100
commit9b4c05b6b9aec916c0940aa704c5f2ec9e1a8a83 (patch)
treee5910d9001ef6a30f9ea93feeace28a856ac293f
parent3b9b823df50202e466470d3cb557ef16a31b6af7 (diff)
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)