mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
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:
parent
e8833df814
commit
9d06bf9441
3 changed files with 11 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue