pad: remove comma at the end of the last enum value

Fixes the build for c++.
This commit is contained in:
Stefan Kost 2010-07-15 12:01:24 +03:00
parent c082281d28
commit 9d2292acaa

View file

@ -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;
/**