From bbd1032a2a6d76cacaaf729a4b465ec7ca24eef7 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 25 Sep 2019 19:05:59 +0000 Subject: Style and line length nits. --- window-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'window-tree.c') diff --git a/window-tree.c b/window-tree.c index a0127c2f..cc16f274 100644 --- a/window-tree.c +++ b/window-tree.c @@ -269,7 +269,7 @@ window_tree_cmp_pane(const void *a0, const void *b0) result = (*a)->id - (*b)->id; } if (window_tree_sort->reversed) - result *= -1; + result = -result; return (result); } -- cgit