mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.0737: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. Solution: Add initialization. (John Marriott)
This commit is contained in:
@@ -4208,7 +4208,7 @@ eval7(
|
||||
if (**arg == '0' && ((*arg)[1] == 'z' || (*arg)[1] == 'Z'))
|
||||
{
|
||||
char_u *bp;
|
||||
blob_T *blob;
|
||||
blob_T *blob = NULL; // init for gcc
|
||||
|
||||
// Blob constant: 0z0123456789abcdef
|
||||
if (evaluate)
|
||||
|
Reference in New Issue
Block a user