Style and line length nits.

This commit is contained in:
nicm
2019-09-25 19:05:59 +00:00
parent e3359f8349
commit bbd1032a2a
2 changed files with 3 additions and 2 deletions

View File

@ -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);
}