[MOVED FROM BAD 14/68] local include fixes
authorSteve Lhomme <steve.lhomme@free.fr>
Mon, 26 Jul 2004 22:11:21 +0000 (22:11 +0000)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 15 Jun 2011 14:12:53 +0000 (16:12 +0200)
Original commit message from CVS:
local include fixes
Fix some 64 bits constants to be glib friendly
issue for a vararg macro with MSVC

gst/colorspace/gstcolorspace.c
gst/colorspace/yuv2rgb.h

index f321750..d85e87e 100644 (file)
@@ -20,7 +20,7 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <gstcolorspace.h>
+#include "gstcolorspace.h"
 #include <gst/gst.h>
 #include <gst/video/video.h>
 
index be173bc..e136f4d 100644 (file)
@@ -23,7 +23,7 @@
 #define __YUV2RGB_H__
 
 #include <gst/gst.h>
-#include <gstcolorspace.h>
+#include "gstcolorspace.h"
 
 G_BEGIN_DECLS