commit | d43848c0dd0603248405bb93364866cd495f0547 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 14 14:28:26 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 14 14:28:26 2010 +0200 |
tree | de367ef25f53a3e58496b964c4301cf16f216208 | |
parent | 164fca39bdacc36b7d9f2d1b28ab5abe03ce4004 [diff] [blame] |
Fix a few compiler warnings.
diff --git a/src/ops.c b/src/ops.c index 4eef688..5e0c99f 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -4155,7 +4155,8 @@ 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;