Skip to content

Commit b2bd6a0

Browse files
committed
patch 7.4.1389
Problem: Incomplete function declaration. Solution: Add "void". (Yasuhiro Matsumoto)
1 parent bdcd752 commit b2bd6a0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/eval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15064,7 +15064,7 @@ job_status(job_T *job)
1506415064
* Called once in a while: check if any jobs with an "exit-cb" have ended.
1506515065
*/
1506615066
void
15067-
job_check_ended()
15067+
job_check_ended(void)
1506815068
{
1506915069
static time_t last_check = 0;
1507015070
time_t now;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@ static char *(features[]) =
748748

749749
static int included_patches[] =
750750
{ /* Add new patch number below this line */
751+
/**/
752+
1389,
751753
/**/
752754
1388,
753755
/**/

0 commit comments

Comments
 (0)