aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc1.c
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2015-03-13 07:09:08 -0400
committerJohn Szakmeister <john@szakmeister.net>2015-03-13 07:09:08 -0400
commitc015eabe13bd37fb7d129da20904dd172b0bd3a1 (patch)
tree1b4a910ce85a78a265d2b2c708e3d47b7da08826 /src/nvim/misc1.c
parentb5bb6269b0f27c5192eaed6a069ba564c278760a (diff)
parent9925b3a0477e5af348a8348544e69a65a9222c1b (diff)
downloadrneovim-c015eabe13bd37fb7d129da20904dd172b0bd3a1.tar.gz
rneovim-c015eabe13bd37fb7d129da20904dd172b0bd3a1.tar.bz2
rneovim-c015eabe13bd37fb7d129da20904dd172b0bd3a1.zip
Merge pull request #2118 from rev112/fix_redundant_cast
Remove redundant casts
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r--src/nvim/misc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c
index 04551355ae..3ed6b416d6 100644
--- a/src/nvim/misc1.c
+++ b/src/nvim/misc1.c
@@ -1261,7 +1261,7 @@ plines_win_nofill (
lines = plines_win_nofold(wp, lnum);
if (winheight > 0 && lines > wp->w_height)
- return (int)wp->w_height;
+ return wp->w_height;
return lines;
}