From f6e340cb6755235585f738d6ffb4f02a4c000139 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 17 Apr 2013 09:45:16 +0200 Subject: remove useless cast --- mpd-notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpd-notification.c b/mpd-notification.c index 6fb9921..dbdefb3 100644 --- a/mpd-notification.c +++ b/mpd-notification.c @@ -73,7 +73,7 @@ int main(int argc, char ** argv) { if ((album = g_markup_escape_text(mpd_song_get_tag(song, MPD_TAG_ALBUM, 0), -1)) == NULL) album = TEXT_UNKNOWN; - notifystr = (char *) malloc(strlen(TEXT_PLAY) + strlen(title) + strlen(artist) + strlen(album)); + notifystr = malloc(strlen(TEXT_PLAY) + strlen(title) + strlen(artist) + strlen(album)); sprintf(notifystr, TEXT_PLAY, title, artist, album); mpd_song_free(song); -- cgit v1.2.3-54-g00ecf