diff options
author | waker <wakeroid@gmail.com> | 2009-08-27 20:46:48 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2009-08-27 20:46:48 +0200 |
commit | 1266ebad2083550266906b9e6ce37dec18c594bd (patch) | |
tree | 1adab2643e5c7daa0f82126d50c9786aba794a52 /plugins/lastfm | |
parent | 8c9425b1b18bc8f76f9fad25d56bd4d3466fe1e3 (diff) |
new songstarted and song finished event triggering
Diffstat (limited to 'plugins/lastfm')
-rw-r--r-- | plugins/lastfm/lastfm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c index afee5471..926e47de 100644 --- a/plugins/lastfm/lastfm.c +++ b/plugins/lastfm/lastfm.c @@ -249,7 +249,7 @@ lastfm_songstarted (DB_event_song_t *ev, uintptr_t data) { printf ("playtime: %f\nartist: %s\ntitle: %s\nalbum: %s\nduration: %f\ntracknum: %s\n---\n", ev->song->playtime, a, t, b, l, n); } else { - printf ("file %f doesn't have enough tags to submit to last.fm\n", ev->song->fname); + printf ("file %s doesn't have enough tags to submit to last.fm\n", ev->song->fname); } return 0; @@ -268,7 +268,7 @@ lastfm_songfinished (DB_event_song_t *ev, uintptr_t data) { printf ("playtime: %f\nartist: %s\ntitle: %s\nalbum: %s\nduration: %f\ntracknum: %s\n---\n", ev->song->playtime, a, t, b, l, n); } else { - printf ("file %f doesn't have enough tags to submit to last.fm\n", ev->song->fname); + printf ("file %s doesn't have enough tags to submit to last.fm\n", ev->song->fname); } return 0; |