summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2013-04-27 09:25:35 +0100
committerTim-Philipp Müller <tim@centricular.net>2013-04-27 09:25:35 +0100
commitbdb33163478fdf95938fbdca7eabad3ea920a277 (patch)
tree74f7ebc4bf6eb5cd326d780f2e53737aebf1e13c
parent3359117536a062af9a0e946a603fd45e4c49560e (diff)
downloadgstreamer-plugins-base-bdb33163478fdf95938fbdca7eabad3ea920a277.tar.gz
video: fix compiler warning in header with C++11 / clang-3.1
...include/gstreamer-0.10/gst/video/video.h:357:17: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] "width = "GST_VIDEO_SIZE_RANGE" , " \ https://bugzilla.gnome.org/show_bug.cgi?id=699009
-rw-r--r--gst-libs/gst/video/video.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/video/video.h b/gst-libs/gst/video/video.h
index 876aab5e9..5481a5c74 100644
--- a/gst-libs/gst/video/video.h
+++ b/gst-libs/gst/video/video.h
@@ -356,9 +356,9 @@ typedef enum {
*/
#define GST_VIDEO_CAPS_RGB8_PALETTED \
"video/x-raw-rgb, bpp = (int)8, depth = (int)8, " \
- "width = "GST_VIDEO_SIZE_RANGE" , " \
+ "width = " GST_VIDEO_SIZE_RANGE " , " \
"height = " GST_VIDEO_SIZE_RANGE ", " \
- "framerate = "GST_VIDEO_FPS_RANGE
+ "framerate = " GST_VIDEO_FPS_RANGE
/**
* GST_VIDEO_CAPS_YUV: