mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst-libs/gst/audio/audio.h: Remove trailing comma from enum list, which causes problems with -pendantic (#550729).
Original commit message from CVS: * gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED): Remove trailing comma from enum list, which causes problems with -pendantic (#550729).
This commit is contained in:
parent
f5a176bb6c
commit
b579580991
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-09-13 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* gst-libs/gst/audio/audio.h: (GST_AUDIO_FIELD_SIGNED):
|
||||
Remove trailing comma from enum list, which causes problems
|
||||
with -pendantic (#550729).
|
||||
|
||||
2008-09-05 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* gst-libs/gst/interfaces/propertyprobe.c:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit a1e554f656b1f8829dbca280c0f1bdee9dec5e48
|
||||
Subproject commit 1ff63d8f92c36bf207434436f4ce75f2a4ea11a4
|
|
@ -164,7 +164,7 @@ typedef enum {
|
|||
GST_AUDIO_FIELD_ENDIANNESS = (1 << 2),
|
||||
GST_AUDIO_FIELD_WIDTH = (1 << 3),
|
||||
GST_AUDIO_FIELD_DEPTH = (1 << 4),
|
||||
GST_AUDIO_FIELD_SIGNED = (1 << 5),
|
||||
GST_AUDIO_FIELD_SIGNED = (1 << 5)
|
||||
} GstAudioFieldFlag;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue