summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2009-06-14 16:56:32 +0400
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-14 20:00:49 +0100
commit18a34288cfdfc71a6bc2b6e1d6c59f5c64c23190 (patch)
treed86be5155178f42d7c1770c3ed75aa3407735096
parentdccea0406bc464adb2ce4356ba76581f4b58933b (diff)
segment: fix include order to get config.h before _mingw.h
config.h must always be included before any other includes, either directly or indirectly via gst_private.h. Fixes #585733.
-rw-r--r--gst/gstsegment.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/gstsegment.c b/gst/gstsegment.c
index e4fd3866c1..fe05f65b23 100644
--- a/gst/gstsegment.c
+++ b/gst/gstsegment.c
@@ -19,11 +19,10 @@
* Boston, MA 02111-1307, USA.
*/
+#include "gst_private.h"
#include <math.h>
-#include "gst_private.h"
-
#include "gstutils.h"
#include "gstsegment.h"