Fix <= operator.

This commit is contained in:
nicm 2021-06-10 07:57:06 +00:00
parent 77b1290698
commit 3a5b576399

View File

@ -3991,7 +3991,7 @@ format_replace_expression(struct format_modifier *mexp,
result = (mleft < mright); result = (mleft < mright);
break; break;
case LESS_THAN_EQUAL: case LESS_THAN_EQUAL:
result = (mleft > mright); result = (mleft >= mright);
break; break;
} }
if (use_fp) if (use_fp)