0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

Fix a few compiler warnings.

This commit is contained in:
Bram Moolenaar
2010-07-14 14:28:26 +02:00
parent 164fca39bd
commit d43848c0dd
4 changed files with 17 additions and 11 deletions

View File

@@ -4155,7 +4155,8 @@ do_join(count, insert_space, save_undo)
char_u *cend;
char_u *newp;
char_u *spaces; /* number of spaces inserte before a line */
int endcurr1, endcurr2;
int endcurr1 = NUL;
int endcurr2 = NUL;
int currsize = 0; /* size of the current line */
int sumsize = 0; /* size of the long new line */
linenr_T t;