summaryrefslogtreecommitdiff
path: root/plugins/lastfm
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-03-28 21:50:22 +0200
committerGravatar waker <wakeroid@gmail.com>2011-03-28 21:50:22 +0200
commitc125bfe570db1f48709120c619533f9316371cb7 (patch)
tree545a3c43cdfe08c82f4fe5109f6cbc2df0e1b6bc /plugins/lastfm
parent2b97d4c693c99223261275f5028da4bd66f0453f (diff)
delete printf from lfm_action_lookup
Diffstat (limited to 'plugins/lastfm')
-rw-r--r--plugins/lastfm/lastfm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index 068ae85a..68f1adc0 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -846,7 +846,6 @@ lfm_action_lookup (DB_plugin_action_t *action, DB_playItem_t *it)
char *command = NULL;
if (-1 == asprintf (&command, "xdg-open 'http://www.last.fm/music/%s/_/%s' &", eartist, etitle))
return 0;
- printf ("executing %s\n", command);
system (command);
free (command);
}