summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2013-07-13 16:42:14 +1000
committerwm4 <wm4@nowhere>2013-07-13 14:43:54 +0200
commitea7e54cb347b13d8036f42fcf3c8263f58fcd636 (patch)
tree07fa44220b455357de50627a45716d1502f47c7d
parent58c92bce690568ba6ff20d67e51d7cb9f7e6ce57 (diff)
downloadmpv-ea7e54cb347b13d8036f42fcf3c8263f58fcd636.tar.bz2
mpv-ea7e54cb347b13d8036f42fcf3c8263f58fcd636.tar.xz
w32: silence some warnings
-rw-r--r--core/input/input.c2
-rw-r--r--stream/cache.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/core/input/input.c b/core/input/input.c
index e87d9bb560..36543f3e5f 100644
--- a/core/input/input.c
+++ b/core/input/input.c
@@ -1154,12 +1154,14 @@ static int default_cmd_func(int fd, char *buf, int l)
}
}
+#ifndef __MINGW32__
static int read_wakeup(void *ctx, int fd)
{
char buf[100];
read(fd, buf, sizeof(buf));
return MP_INPUT_NOTHING;
}
+#endif
static bool bind_matches_key(struct cmd_bind *bind, int n, const int *keys);
diff --git a/stream/cache.c b/stream/cache.c
index 4a062538db..364ef68891 100644
--- a/stream/cache.c
+++ b/stream/cache.c
@@ -134,7 +134,7 @@ static int cond_timed_wait(pthread_cond_t *cond, pthread_mutex_t *mutex,
double timeout)
{
struct timespec ts;
-#if _POSIX_TIMERS > 0
+#if defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0
clock_gettime(CLOCK_REALTIME, &ts);
#else
struct timeval tv;