diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-05-09 10:48:12 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-05-09 10:48:12 +0000 |
commit | 01cf54f041eaf72a0febc3ba97116d5bdacb1955 (patch) | |
tree | 61ac46bf2b0fa07fd17d5e292a90e2612a6eab2f /libavformat | |
parent | 97006039cc0bcadc845cd6f2aa2281f38aed1442 (diff) | |
download | ffmpeg-streaming-01cf54f041eaf72a0febc3ba97116d5bdacb1955.zip ffmpeg-streaming-01cf54f041eaf72a0febc3ba97116d5bdacb1955.tar.gz |
Mac OS X 10.4 compilation fix by Steven M. Schultz <sms at 2BSD dot COM>
Originally committed as revision 4207 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 33702e0..86a3cfb 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -21,7 +21,7 @@ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> -#if defined(__APPLE__) || defined(__BEOS__) +#if defined(__BEOS__) typedef int socklen_t; #endif #ifndef __BEOS__ |