aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/pty_process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/event/pty_process.h')
-rw-r--r--src/nvim/event/pty_process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/event/pty_process.h b/src/nvim/event/pty_process.h
index a12b5489c5..446d7fd3c8 100644
--- a/src/nvim/event/pty_process.h
+++ b/src/nvim/event/pty_process.h
@@ -13,10 +13,10 @@ typedef struct pty_process {
int tty_fd;
} PtyProcess;
-static inline PtyProcess pty_process_init(void *data)
+static inline PtyProcess pty_process_init(Loop *loop, void *data)
{
PtyProcess rv;
- rv.process = process_init(kProcessTypePty, data);
+ rv.process = process_init(loop, kProcessTypePty, data);
rv.term_name = NULL;
rv.width = 80;
rv.height = 24;