ext/taglib/: Remove useless typedefs without new type name. Fixes a warning with...
authorSebastian Dröge <slomo@circular-chaos.org>
Fri, 4 Jan 2008 18:30:21 +0000 (18:30 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Fri, 4 Jan 2008 18:30:21 +0000 (18:30 +0000)
Original commit message from CVS:
* ext/taglib/gstapev2mux.h:
* ext/taglib/gstid3v2mux.h:
Remove useless typedefs without new type name. Fixes a warning with
gcc 4.3.

ChangeLog
ext/taglib/gstapev2mux.h
ext/taglib/gstid3v2mux.h

index 5c8a670..305c3dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
+
+       * 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  <wim.taymans@collabora.co.uk>
 
        Patch by: John Millikin <jmillikin at gmail dot com>
index b7f89f1..8dd9333 100644 (file)
@@ -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;
 };
 
index f3d3124..9d47d30 100644 (file)
@@ -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;
 };