win: fix typo in type name

Introduced in 58ccfd4c21, reviewed by
yours truly :-(

PR-URL: https://github.com/libuv/libuv/pull/1018
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
Saúl Ibarra Corretgé 2016-08-26 14:49:37 +01:00
parent ee11177006
commit 0895ccfc8c

View File

@ -130,7 +130,7 @@ typedef enum {
UV_UNSUPPORTED
} uv_vtermstate_t;
/* Determine whether or not ANSI support is enabled. */
static vtermstate_t uv__vterm_state = UV_UNCHECKED;
static uv_vtermstate_t uv__vterm_state = UV_UNCHECKED;
static void uv__determine_vterm_state(HANDLE handle);
void uv_console_init() {