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 7810e62d59fec8b9378820e9a59b07e34abeb4fc..36773dda7269f91229d1cf962120d692bcde9349 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 7b05c4639ac4f444699651e92f9006e29b39d23b..7d41a1b60f66f50147b32a7fe2aded8c7f799893 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;
 
 /**