mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
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:
parent
56b5aa1ccb
commit
d04a298f6f
2 changed files with 9 additions and 1 deletions
|
@ -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>
|
2007-08-07 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* docs/design/part-TODO.txt:
|
* docs/design/part-TODO.txt:
|
||||||
|
|
|
@ -356,7 +356,7 @@ gst_buffer_ref (GstBuffer * buf)
|
||||||
typedef enum {
|
typedef enum {
|
||||||
GST_BUFFER_COPY_FLAGS = (1 << 0),
|
GST_BUFFER_COPY_FLAGS = (1 << 0),
|
||||||
GST_BUFFER_COPY_TIMESTAMPS = (1 << 1),
|
GST_BUFFER_COPY_TIMESTAMPS = (1 << 1),
|
||||||
GST_BUFFER_COPY_CAPS = (1 << 2),
|
GST_BUFFER_COPY_CAPS = (1 << 2)
|
||||||
} GstBufferCopyFlags;
|
} GstBufferCopyFlags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue