diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-01-19 14:59:56 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-01-19 14:59:56 +0100 |
commit | 2660c0ea9be48b57b5b7f613fdd6add99c643c80 (patch) | |
tree | 4516eeafe1e08e8386f4b1260d3f15ea5bdea75c /src/ui.c | |
parent | 3ea38ef23944f3d49c126b94708e2d4a540bca42 (diff) | |
download | vim-2660c0ea9be48b57b5b7f613fdd6add99c643c80.zip |
updated for version 7.2.333
Problem: Warnings from static code analysis.
Solution: Small changes to various lines. (Dominique Pelle)
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2383,7 +2383,7 @@ yank_cut_buffer0(dpy, cbd) * 'enc' anyway. */ if (has_mbyte) { - char_u *conv_buf = buffer; + char_u *conv_buf; vimconv_T vc; vc.vc_type = CONV_NONE; |