Fix <= operator.
authornicm <nicm@openbsd.org>
Thu, 10 Jun 2021 07:57:06 +0000 (07:57 +0000)
committernicm <nicm@openbsd.org>
Thu, 10 Jun 2021 07:57:06 +0000 (07:57 +0000)
usr.bin/tmux/format.c

index 9a54ea5..4b25ed5 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: format.c,v 1.284 2021/06/10 07:45:43 nicm Exp $ */
+/* $OpenBSD: format.c,v 1.285 2021/06/10 07:57:06 nicm Exp $ */
 
 /*
  * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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)