mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.0.0371: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable. (John Marriott)
This commit is contained in:
@@ -694,7 +694,7 @@ deref_function_name(
|
||||
{
|
||||
typval_T ref;
|
||||
char_u *name = *arg;
|
||||
int save_flags;
|
||||
int save_flags = 0;
|
||||
|
||||
ref.v_type = VAR_UNKNOWN;
|
||||
if (evalarg != NULL)
|
||||
|
Reference in New Issue
Block a user