Original commit message from CVS:
Patch by: <arenevier at fdn dot fr>
* gst/gstbuffer.h:
Remove comma from last element in enum to avoid compile errors when
using -pendantic. Fixes #464366.
+2007-08-07 Wim Taymans <wim.taymans@gmail.com>
+
+ Patch by: <arenevier at fdn dot fr>
+
+ * gst/gstbuffer.h:
+ Remove comma from last element in enum to avoid compile errors when
+ using -pendantic. Fixes #464366.
+
2007-08-07 Wim Taymans <wim.taymans@gmail.com>
* docs/design/part-TODO.txt:
typedef enum {
GST_BUFFER_COPY_FLAGS = (1 << 0),
GST_BUFFER_COPY_TIMESTAMPS = (1 << 1),
- GST_BUFFER_COPY_CAPS = (1 << 2),
+ GST_BUFFER_COPY_CAPS = (1 << 2)
} GstBufferCopyFlags;
/**