removed union const_hack

The union const_hack is only used at one place in the shout plugin.
Remove its global type declaration.
This commit is contained in:
Max Kellermann 2008-09-29 15:51:31 +02:00
parent 798eeeee63
commit e8e9438255
2 changed files with 4 additions and 7 deletions

View File

@ -40,8 +40,10 @@ struct ogg_vorbis_data {
static void add_tag(struct ogg_vorbis_data *od, const char *name, char *value)
{
if (value) {
union const_hack u;
u.in = name;
union {
const char *in;
char *out;
} u = { .in = name };
vorbis_comment_add_tag(&od->vc, u.out, value);
}
}

View File

@ -65,9 +65,4 @@ typedef signed long int32_t;
#endif /* !HAVE_STDINT_H && !HAVE_INTTYPES_H */
union const_hack {
const char *in;
char *out;
};
#endif