Problem: Some compilers complain about uninitialzed variable, even though
all possible cases are handled. (Dominique Pelle)
Solution: Add a default initialization.
static void
f_empty(typval_T *argvars, typval_T *rettv)
{
- int n;
+ int n = FALSE;
switch (argvars[0].v_type)
{
static void
f_type(typval_T *argvars, typval_T *rettv)
{
- int n;
+ int n = -1;
switch (argvars[0].v_type)
{
hashitem_T *hi;
dictitem_T *this_var;
int todo;
- char *s;
+ char *s = "";
char_u *p;
char_u *tofree;
char_u numbuf[NUMBUFLEN];
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1292,
/**/
1291,
/**/