summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-27 12:03:51 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-27 12:03:51 +0000
commit47044eb841770cff33be22ba5c037188e1d14030 (patch)
tree96f031fdc13dbe88acd071703abecedf326712d6 /stream
parentce7fc9babc01b8c3c177400dfbf891e31e63d649 (diff)
downloadmpv-47044eb841770cff33be22ba5c037188e1d14030.tar.bz2
mpv-47044eb841770cff33be22ba5c037188e1d14030.tar.xz
Avoid u_ BSD type names.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28197 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tcp.c b/stream/tcp.c
index fd5a849cad..69072f80fa 100644
--- a/stream/tcp.c
+++ b/stream/tcp.c
@@ -76,7 +76,7 @@ connect2Server_with_af(char *host, int port, int af,int verb) {
char buf[255];
#ifdef HAVE_WINSOCK2_H
- u_long val;
+ unsigned long val;
int to;
#else
struct timeval to;