1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-23 04:48:47 +00:00

Fix <= operator.

This commit is contained in:
Nicholas Marriott 2021-05-17 06:58:45 +01:00
parent 8aa34f616f
commit 3b9b823df5

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)