gst/gstbuffer.h: Remove comma from last element in enum to avoid compile errors when...
authorWim Taymans <wim.taymans@gmail.com>
Tue, 7 Aug 2007 14:04:22 +0000 (14:04 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Tue, 7 Aug 2007 14:04:22 +0000 (14:04 +0000)
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.

ChangeLog
gst/gstbuffer.h

index 7810e62..36773dd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 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:
        Add some more TODO items
 
index 7b05c46..7d41a1b 100644 (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;
 
 /**