artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f36458
)
Fix <= operator.
author
nicm
<nicm@openbsd.org>
Thu, 10 Jun 2021 07:57:06 +0000
(07:57 +0000)
committer
nicm
<nicm@openbsd.org>
Thu, 10 Jun 2021 07:57:06 +0000
(07:57 +0000)
usr.bin/tmux/format.c
patch
|
blob
|
history
diff --git
a/usr.bin/tmux/format.c
b/usr.bin/tmux/format.c
index
9a54ea5
..
4b25ed5
100644
(file)
--- a/
usr.bin/tmux/format.c
+++ b/
usr.bin/tmux/format.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: format.c,v 1.28
4 2021/06/10 07:45:43
nicm Exp $ */
+/* $OpenBSD: format.c,v 1.28
5 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)