Fix <= operator.

pull/2755/head
nicm 2021-06-10 07:57:06 +00:00
parent 77b1290698
commit 3a5b576399
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)