gst-libs/gst/audio/audio.h: Remove trailing comma from enum list, which causes proble...
authorTim-Philipp Müller <tim@centricular.net>
Sat, 13 Sep 2008 11:04:02 +0000 (11:04 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Sat, 13 Sep 2008 11:04:02 +0000 (11:04 +0000)
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).

ChangeLog
common
gst-libs/gst/audio/audio.h

index f2f20a1..2242c19 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/common b/common
index a1e554f..1ff63d8 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit a1e554f656b1f8829dbca280c0f1bdee9dec5e48
+Subproject commit 1ff63d8f92c36bf207434436f4ce75f2a4ea11a4
index acde9ca..7d1eae5 100644 (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