summaryrefslogtreecommitdiff
path: root/src/proto/channel.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-17 23:20:24 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-17 23:20:24 +0200
commit96ca27a0ee8ae738cab9fb386984c75c6821e31a (patch)
treed4c986e7262a996a095f6b4b71601dfc361c57a5 /src/proto/channel.pro
parent60d0e97497f1104b31f711072ef174af533b61fa (diff)
downloadvim-git-96ca27a0ee8ae738cab9fb386984c75c6821e31a.tar.gz
patch 8.0.0728: the terminal structure is never freedv8.0.0728
Problem: The terminal structure is never freed. Solution: Free the structure and unreference what it contains.
Diffstat (limited to 'src/proto/channel.pro')
-rw-r--r--src/proto/channel.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/channel.pro b/src/proto/channel.pro
index 6c845ca94..e576584c4 100644
--- a/src/proto/channel.pro
+++ b/src/proto/channel.pro
@@ -67,5 +67,5 @@ void job_check_ended(void);
job_T *job_start(typval_T *argvars, jobopt_T *opt_arg);
char *job_status(job_T *job);
void job_info(job_T *job, dict_T *dict);
-int job_stop(job_T *job, typval_T *argvars);
+int job_stop(job_T *job, typval_T *argvars, char *type);
/* vim: set ft=c : */