0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.1053: warning for missing return statement

Problem:    Warning for missing return statement. (Dominique Pelle)
Solution:   Add return statement.
This commit is contained in:
Bram Moolenaar
2019-03-26 00:31:21 +01:00
parent 553e5a5c56
commit d6c3f1fa2b
2 changed files with 3 additions and 0 deletions

View File

@@ -3541,6 +3541,7 @@ anyBufIsChanged(void)
FOR_ALL_BUFFERS(buf) FOR_ALL_BUFFERS(buf)
if (bufIsChanged(buf)) if (bufIsChanged(buf))
return TRUE; return TRUE;
return FALSE;
} }
/* /*

View File

@@ -775,6 +775,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 */
/**/
1053,
/**/ /**/
1052, 1052,
/**/ /**/