forked from aniani/vim
patch 8.1.1207: some compilers give warning messages
Problem: Some compilers give warning messages. Solution: Initialize variables, change printf() argument. (Christian Brabandt, closes #4305)
This commit is contained in:
@@ -3981,7 +3981,7 @@ enter_tabpage(
|
||||
void
|
||||
goto_tabpage(int n)
|
||||
{
|
||||
tabpage_T *tp;
|
||||
tabpage_T *tp = NULL; // shut up compiler
|
||||
tabpage_T *ttp;
|
||||
int i;
|
||||
|
||||
|
Reference in New Issue
Block a user