diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-21 05:46:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-21 05:51:41 +0200 |
commit | be03912a7805bb40ae022b444b1dc75460bb3eea (patch) | |
tree | e9ae7f415237c2895cceabeea2a1414501d02177 | |
parent | 97e165cdae9be6c4255cf004b2785f5c7c23ab3a (diff) | |
download | ffmpeg-be03912a7805bb40ae022b444b1dc75460bb3eea.tar.gz |
avformat/unix: reshuffle #includes
This should fix openbsd while hopefully also working on solaris & android
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/unix.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/unix.c b/libavformat/unix.c index 25af4101a1..0e61318fbd 100644 --- a/libavformat/unix.c +++ b/libavformat/unix.c @@ -26,13 +26,11 @@ * */ -#include <sys/socket.h> -#include <sys/un.h> - #include "libavutil/avstring.h" #include "libavutil/opt.h" #include "os_support.h" #include "network.h" +#include <sys/un.h> #include "url.h" typedef struct UnixContext { |