gst/gstbuffer.h: Remove comma from last element in enum to avoid compile errors when using -pendantic. Fixes #464366.

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.
This commit is contained in:
Wim Taymans 2007-08-07 14:04:22 +00:00
parent 56b5aa1ccb
commit d04a298f6f
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,11 @@
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:

View file

@ -356,7 +356,7 @@ gst_buffer_ref (GstBuffer * buf)
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;
/**