diff options
| author | George Zhao <zhaozg@gmail.com> | 2018-01-17 19:35:57 +0800 |
|---|---|---|
| committer | George Zhao <zhaozg@gmail.com> | 2018-01-18 21:30:03 +0800 |
| commit | 06994e0e21eb5545aef7c2234f5d1a271865366e (patch) | |
| tree | c0880efd3f0666035804dcf8c484ec06a628cd4e /src/nvim/tui | |
| parent | bc17ad31dccb446fc24e0f6bb3cb2149ce951ae5 (diff) | |
| download | rneovim-06994e0e21eb5545aef7c2234f5d1a271865366e.tar.gz rneovim-06994e0e21eb5545aef7c2234f5d1a271865366e.tar.bz2 rneovim-06994e0e21eb5545aef7c2234f5d1a271865366e.zip | |
Fix warning about conversion on mingw64
Diffstat (limited to 'src/nvim/tui')
| -rw-r--r-- | src/nvim/tui/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/input.c b/src/nvim/tui/input.c index 96bb692db9..698be02dbf 100644 --- a/src/nvim/tui/input.c +++ b/src/nvim/tui/input.c @@ -49,7 +49,7 @@ void term_input_init(TermInput *input, Loop *loop) #ifdef WIN32 uv_tty_init(loop, &input->tty_in, 0, 1); uv_tty_set_mode(&input->tty_in, UV_TTY_MODE_RAW); - rstream_init_stream(&input->read_stream, &input->tty_in, 0xfff); + rstream_init_stream(&input->read_stream, (uv_stream_t *)&input->tty_in, 0xfff); #else rstream_init_fd(loop, &input->read_stream, input->in_fd, 0xfff); #endif |