mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
patch 8.2.3000: Vim9: warning for uninitialized variable
Problem: Vim9: warning for uninitialized variable. Solution: Add initialization. (John Marriott)
This commit is contained in:
parent
47f6db9089
commit
3b814af7e1
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3000,
|
||||||
/**/
|
/**/
|
||||||
2999,
|
2999,
|
||||||
/**/
|
/**/
|
||||||
|
@ -9051,7 +9051,7 @@ compile_def_function(
|
|||||||
{
|
{
|
||||||
dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
|
dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data)
|
||||||
+ ufunc->uf_dfunc_idx;
|
+ ufunc->uf_dfunc_idx;
|
||||||
isn_T *instr_dest;
|
isn_T *instr_dest = NULL;
|
||||||
|
|
||||||
switch (compile_type)
|
switch (compile_type)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user