diff options
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/src/cli-rl.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/src/cli-rl.c b/cli/src/cli-rl.c index 7831d0bcb40..38aa6f4b7ae 100644 --- a/cli/src/cli-rl.c +++ b/cli/src/cli-rl.c @@ -104,7 +104,7 @@ cli_rl_process_line(char *line)  int  cli_rl_stdin(int fd, int idx, int gen, void *data, int poll_out, int poll_in, -             int poll_err) +             int poll_err, char event_thread_died)  {      struct cli_state *state = NULL; @@ -376,7 +376,8 @@ cli_rl_enable(struct cli_state *state)          goto out;      } -    ret = event_register(state->ctx->event_pool, 0, cli_rl_stdin, state, 1, 0); +    ret = event_register(state->ctx->event_pool, 0, cli_rl_stdin, state, 1, 0, +                         0);      if (ret == -1)          goto out;  | 
