From 0e77b7691ee7c477facb4c9d9162c8603ada2d84 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 26 Sep 2016 22:58:58 +0200 Subject: [PATCH] patch 8.0.0016 Problem: Build fails. Solution: Include missing change. --- src/eval.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index 6873b978a..3b5abe9c3 100644 --- a/src/eval.c +++ b/src/eval.c @@ -7305,7 +7305,7 @@ get_tv_string_buf_chk(typval_T *varp, char_u *buf) #ifdef FEAT_JOB_CHANNEL { channel_T *channel = varp->vval.v_channel; - char *status = channel_status(channel); + char *status = channel_status(channel, -1); if (channel == NULL) vim_snprintf((char *)buf, NUMBUFLEN, "channel %s", status); diff --git a/src/version.c b/src/version.c index cd1595007..2ae056a6c 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 16, /**/ 15, /**/ -- 2.50.1