comparison src/ops.c @ 2310:3e4574a4b627 vim73

Fix a few compiler warnings.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Jul 2010 14:28:26 +0200
parents a3562a127cf6
children ccda151dde4e
comparison
equal deleted inserted replaced
2309:543ea69d037f 2310:3e4574a4b627
4153 { 4153 {
4154 char_u *curr = NULL; 4154 char_u *curr = NULL;
4155 char_u *cend; 4155 char_u *cend;
4156 char_u *newp; 4156 char_u *newp;
4157 char_u *spaces; /* number of spaces inserte before a line */ 4157 char_u *spaces; /* number of spaces inserte before a line */
4158 int endcurr1, endcurr2; 4158 int endcurr1 = NUL;
4159 int endcurr2 = NUL;
4159 int currsize = 0; /* size of the current line */ 4160 int currsize = 0; /* size of the current line */
4160 int sumsize = 0; /* size of the long new line */ 4161 int sumsize = 0; /* size of the long new line */
4161 linenr_T t; 4162 linenr_T t;
4162 colnr_T col = 0; 4163 colnr_T col = 0;
4163 int ret = OK; 4164 int ret = OK;