From b579580991fbded89ac91a961d4c3e33c7be9c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 13 Sep 2008 11:04:02 +0000 Subject: [PATCH] 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). --- ChangeLog | 6 ++++++ common | 2 +- gst-libs/gst/audio/audio.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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