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:
Tim-Philipp Müller 2008-09-13 11:04:02 +00:00
parent f5a176bb6c
commit b579580991
3 changed files with 8 additions and 2 deletions

View file

@ -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

@ -1 +1 @@
Subproject commit a1e554f656b1f8829dbca280c0f1bdee9dec5e48
Subproject commit 1ff63d8f92c36bf207434436f4ce75f2a4ea11a4

View file

@ -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