summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-07-15 12:01:24 +0300
committerStefan Kost <ensonic@users.sf.net>2010-07-15 12:03:04 +0300
commit9d2292acaac3ca6c6fc1a6e9be8887fc581efc16 (patch)
treead9846ef15d057aa6600d40832da6dd3111d4dd7
parentc082281d280d375d19d5e8a9bd3bc71a9c6c23cb (diff)
pad: remove comma at the end of the last enum value
Fixes the build for c++.
-rw-r--r--gst/gstpad.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstpad.h b/gst/gstpad.h
index fc7a3c2bff..99d4e054a2 100644
--- a/gst/gstpad.h
+++ b/gst/gstpad.h
@@ -207,7 +207,7 @@ typedef enum {
GST_PAD_LINK_CHECK_NOTHING = 0,
GST_PAD_LINK_CHECK_HIERARCHY = 1 << 0,
GST_PAD_LINK_CHECK_TEMPLATE_CAPS = 1 << 1,
- GST_PAD_LINK_CHECK_CAPS = 1 << 2,
+ GST_PAD_LINK_CHECK_CAPS = 1 << 2
} GstPadLinkCheck;
/**