summaryrefslogtreecommitdiffstats
path: root/stream/udp.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-26 20:06:06 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-26 20:06:06 +0000
commit8bc66b700cfd9886cd125593e2c795f76852de84 (patch)
treeb376aaf954401a0df0c225d341fbe710cb76cbaa /stream/udp.c
parentde6d02c2d2252ccfe2f1e45adc7f1e33bd136685 (diff)
downloadmpv-8bc66b700cfd9886cd125593e2c795f76852de84.tar.bz2
mpv-8bc66b700cfd9886cd125593e2c795f76852de84.tar.xz
Fix mingw compilation
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19550 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/udp.c')
-rw-r--r--stream/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/udp.c b/stream/udp.c
index 9790e1b7f5..889c23826d 100644
--- a/stream/udp.c
+++ b/stream/udp.c
@@ -27,9 +27,9 @@
#include <sys/types.h>
#include <sys/time.h>
#include <ctype.h>
-#include <netdb.h>
#ifndef HAVE_WINSOCK2
+#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>