diff --git a/ChangeLog b/ChangeLog index f2f20a1b5e..2242c19bbd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-13 Tim-Philipp Müller + + * 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 * gst-libs/gst/interfaces/propertyprobe.c: diff --git a/common b/common index a1e554f656..1ff63d8f92 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit a1e554f656b1f8829dbca280c0f1bdee9dec5e48 +Subproject commit 1ff63d8f92c36bf207434436f4ce75f2a4ea11a4 diff --git a/gst-libs/gst/audio/audio.h b/gst-libs/gst/audio/audio.h index acde9ca9dc..7d1eae5e1b 100644 --- a/gst-libs/gst/audio/audio.h +++ b/gst-libs/gst/audio/audio.h @@ -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