diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-10 14:49:32 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-10 14:49:32 +0200 |
commit | 2ffb29a9ee24348269113566e142e28b9f863bd6 (patch) | |
tree | 5c6d7a9acae5f55f8ecfbc7281589cb99f65862e | |
parent | 103f464594a82d1931f122587988aaa0effc2a08 (diff) | |
download | xine-lib-2ffb29a9ee24348269113566e142e28b9f863bd6.tar.gz xine-lib-2ffb29a9ee24348269113566e142e28b9f863bd6.tar.bz2 |
Fixed include order
-rw-r--r-- | src/video_out/video_out_fb.c | 5 | ||||
-rw-r--r-- | src/video_out/video_out_xshm.c | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c index cfc5cf3a6..0d4376336 100644 --- a/src/video_out/video_out_fb.c +++ b/src/video_out/video_out_fb.c @@ -54,9 +54,6 @@ #include <sys/stat.h> #include <fcntl.h> -#include "xine.h" -#include <xine/video_out.h> - #include <errno.h> #include <sys/ipc.h> @@ -84,6 +81,8 @@ #define LOG */ +#include "xine.h" +#include <xine/video_out.h> #include <xine/xine_internal.h> #include "yuv2rgb.h" #include <xine/xineutils.h> diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c index 675575e80..5dfc2c34e 100644 --- a/src/video_out/video_out_xshm.c +++ b/src/video_out/video_out_xshm.c @@ -34,9 +34,6 @@ #include <string.h> #include <math.h> -#include "xine.h" -#include <xine/video_out.h> - #include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/Xatom.h> @@ -63,6 +60,8 @@ #define LOG */ +#include "xine.h" +#include <xine/video_out.h> #include <xine/xine_internal.h> #include "yuv2rgb.h" #include <xine/xineutils.h> |