summaryrefslogtreecommitdiffstats
path: root/osdep/io.c
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/io.c
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/io.c')
-rw-r--r--osdep/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/io.c b/osdep/io.c
index cc90f145d9..e0caa56f79 100644
--- a/osdep/io.c
+++ b/osdep/io.c
@@ -139,7 +139,7 @@ int mp_stat(const char *path, struct stat *buf)
return res;
}
-static int mp_check_console(HANDLE *wstream)
+static int mp_check_console(HANDLE wstream)
{
if (wstream != INVALID_HANDLE_VALUE) {
unsigned int filetype = GetFileType(wstream);
@@ -168,7 +168,7 @@ static int mp_vfprintf(FILE *stream, const char *format, va_list args)
{
int done = 0;
- HANDLE *wstream = INVALID_HANDLE_VALUE;
+ HANDLE wstream = INVALID_HANDLE_VALUE;
if (stream == stdout || stream == stderr) {
wstream = GetStdHandle(stream == stdout ?