diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-17 06:58:45 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-05-17 06:58:45 +0100 |
commit | 01ba6a23f2c407743ae2ed846987f88e7feff68f (patch) | |
tree | a75888419923fc9f884c71715c7ec308c7d37c44 | |
parent | 022d0210c5afa4e516183bf19715316ccca5d240 (diff) | |
download | rtmux-01ba6a23f2c407743ae2ed846987f88e7feff68f.tar.gz rtmux-01ba6a23f2c407743ae2ed846987f88e7feff68f.tar.bz2 rtmux-01ba6a23f2c407743ae2ed846987f88e7feff68f.zip |
Fix <= operator.
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |