summaryrefslogtreecommitdiffstats
path: root/window-tree.c
diff options
context:
space:
mode:
authornicm <nicm>2019-09-25 19:05:59 +0000
committernicm <nicm>2019-09-25 19:05:59 +0000
commitbbd1032a2a6d76cacaaf729a4b465ec7ca24eef7 (patch)
treefa8ce58ef9d8e63b14b8f5d806f9578d36fccbbe /window-tree.c
parente3359f8349cf972052604c089b5bab71f5e33095 (diff)
Style and line length nits.
Diffstat (limited to 'window-tree.c')
-rw-r--r--window-tree.c2
1 files changed, 1 insertions, 1 deletions
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);
}