diff options
author | Matt Turner <mattst88@gmail.com> | 2011-08-01 23:58:14 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-08-01 23:58:14 -0400 |
commit | fa6f24598388ccddfd4b20390dd3158fa8c2f8a6 (patch) | |
tree | 5ecb455c4fded7fa169197efd8356aefef6dc8db /src/Paned.c | |
parent | 85bdcab66a56ca93a7eee0eadf12a90056dfa41d (diff) |
Remove extraneous parentheses.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/Paned.c')
-rw-r--r-- | src/Paned.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Paned.c b/src/Paned.c index d7ddc7f..361f4df 100644 --- a/src/Paned.c +++ b/src/Paned.c @@ -986,7 +986,7 @@ int loc; * to go beyond the min or max size allowed. */ - if ( (dir == ThisBorderOnly) ) { + if (dir == ThisBorderOnly) { int old_add_size = add_size, old_sub_size; AssignMax(add_size, (int) PaneInfo(pw->paned.whichadd)->min); |