diff options
author | John Szakmeister <john@szakmeister.net> | 2015-03-13 07:09:08 -0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2015-03-13 07:09:08 -0400 |
commit | c015eabe13bd37fb7d129da20904dd172b0bd3a1 (patch) | |
tree | 1b4a910ce85a78a265d2b2c708e3d47b7da08826 /src/nvim/tempfile.c | |
parent | b5bb6269b0f27c5192eaed6a069ba564c278760a (diff) | |
parent | 9925b3a0477e5af348a8348544e69a65a9222c1b (diff) | |
download | rneovim-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/tempfile.c')
-rw-r--r-- | src/nvim/tempfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tempfile.c b/src/nvim/tempfile.c index f81aff53a1..0750be0ab9 100644 --- a/src/nvim/tempfile.c +++ b/src/nvim/tempfile.c @@ -66,7 +66,7 @@ void vim_deltempdir(void) // Note: We cannot just do `&NameBuff` because it is a statically // sized array so `NameBuff == &NameBuff` according to C semantics. - char_u *buff_list[1] = {(char_u*) NameBuff}; + char_u *buff_list[1] = {NameBuff}; if (gen_expand_wildcards(1, buff_list, &file_count, &files, EW_DIR|EW_FILE|EW_SILENT) == OK) { for (int i = 0; i < file_count; ++i) { |