Commit e8e94382 authored by Max Kellermann's avatar Max Kellermann

removed union const_hack

The union const_hack is only used at one place in the shout plugin. Remove its global type declaration.
parent 798eeeee
......@@ -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);
}
}
......
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment