summaryrefslogtreecommitdiffstats
path: root/osdep/terminal.h
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2014-08-24 20:56:24 +1000
committerwm4 <wm4@nowhere>2014-08-24 13:23:09 +0200
commit67c6335efcf27186d60c17d34824d3320af878f3 (patch)
tree59686db05f5f9cc3c55185c53c08bf8c4e3f1016 /osdep/terminal.h
parentc31a91230d48f4ed35ebd812d83a661f06f401e1 (diff)
downloadmpv-67c6335efcf27186d60c17d34824d3320af878f3.tar.bz2
mpv-67c6335efcf27186d60c17d34824d3320af878f3.tar.xz
win32: correct HANDLE type
The correct type is HANDLE, not HANDLE*, though this change shouldn't affect functionality.
Diffstat (limited to 'osdep/terminal.h')
-rw-r--r--osdep/terminal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/terminal.h b/osdep/terminal.h
index dea92ba6d3..b2336b68a8 100644
--- a/osdep/terminal.h
+++ b/osdep/terminal.h
@@ -48,6 +48,6 @@ void terminal_get_size(int *w, int *h);
void getch2_poll(void);
// Windows only.
-void mp_write_console_ansi(void **wstream, char *buf);
+void mp_write_console_ansi(void *wstream, char *buf);
#endif /* MPLAYER_GETCH2_H */