ext/taglib/: Remove useless typedefs without new type name. Fixes a warning with gcc 4.3.

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.
This commit is contained in:
Sebastian Dröge 2008-01-04 18:30:21 +00:00
parent e8833df814
commit 9d06bf9441
3 changed files with 11 additions and 4 deletions

View file

@ -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>

View 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;
};

View 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;
};