diff --git a/ChangeLog b/ChangeLog index 5c8a670ef0..305c3dcfb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-01-04 Sebastian Dröge + + * ext/taglib/gstapev2mux.h: + * ext/taglib/gstid3v2mux.h: + Remove useless typedefs without new type name. Fixes a warning with + gcc 4.3. + 2008-01-03 Wim Taymans Patch by: John Millikin diff --git a/ext/taglib/gstapev2mux.h b/ext/taglib/gstapev2mux.h index b7f89f1ec1..8dd9333db8 100644 --- a/ext/taglib/gstapev2mux.h +++ b/ext/taglib/gstapev2mux.h @@ -29,11 +29,11 @@ G_BEGIN_DECLS typedef struct _GstApev2Mux GstApev2Mux; typedef struct _GstApev2MuxClass GstApev2MuxClass; -typedef struct _GstApev2Mux { +struct _GstApev2Mux { GstTagLibMux taglibmux; }; -typedef struct _GstApev2MuxClass { +struct _GstApev2MuxClass { GstTagLibMuxClass taglibmux_class; }; diff --git a/ext/taglib/gstid3v2mux.h b/ext/taglib/gstid3v2mux.h index f3d3124e72..9d47d30dc4 100644 --- a/ext/taglib/gstid3v2mux.h +++ b/ext/taglib/gstid3v2mux.h @@ -28,11 +28,11 @@ G_BEGIN_DECLS typedef struct _GstId3v2Mux GstId3v2Mux; typedef struct _GstId3v2MuxClass GstId3v2MuxClass; -typedef struct _GstId3v2Mux { +struct _GstId3v2Mux { GstTagLibMux taglibmux; }; -typedef struct _GstId3v2MuxClass { +struct _GstId3v2MuxClass { GstTagLibMuxClass taglibmux_class; };