decoder/vorbis: remove useless cast

This commit is contained in:
Max Kellermann 2013-12-14 12:53:59 +01:00
parent fbf677d9b2
commit c7e7c819a2
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ vorbis_scan_comment(const char *comment,
const struct tag_handler *handler, void *handler_ctx)
{
if (handler->pair != nullptr) {
char *name = g_strdup((const char*)comment);
char *name = g_strdup(comment);
char *value = strchr(name, '=');
if (value != nullptr && value > name) {