Er, fix it properly.

pull/2739/head
Nicholas Marriott 2021-05-17 06:59:29 +01:00
parent 3b9b823df5
commit 9b4c05b6b9
1 changed files with 1 additions and 1 deletions

View File

@ -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)