From 83024f57a6dcad690da5bdd559df07ef10d44ccd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 17 May 2021 06:59:29 +0100 Subject: [PATCH] Er, fix it properly. --- format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)