summaryrefslogtreecommitdiff
path: root/plugins/lastfm
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-01-23 22:31:24 +0100
committerGravatar waker <wakeroid@gmail.com>2012-01-23 22:31:24 +0100
commit1a01d23bd9a1a66699d0e68966b001236d65e313 (patch)
tree81cd2be14094c8c5a8d045b43750f9a7a70b0487 /plugins/lastfm
parentdc3a3b052b3ad22587e0bd5fc7f99c8a05dd7bab (diff)
cleaned up and added more documentation for DB_ACTION_** stuff
Diffstat (limited to 'plugins/lastfm')
-rw-r--r--plugins/lastfm/lastfm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index 5135822b..c8794e31 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -908,7 +908,7 @@ static DB_plugin_action_t love_action = {
.title = "Love at Last.fm",
.name = "lfm_love",
.flags = DB_ACTION_SINGLE_TRACK,
- .callback = lfm_action_love,
+ .callback = DDB_ACTION_CALLBACK(lfm_action_love),
.next = NULL
};
@@ -916,7 +916,7 @@ static DB_plugin_action_t lookup_action = {
.title = "Lookup on Last.fm",
.name = "lfm_lookup",
.flags = DB_ACTION_SINGLE_TRACK,
- .callback = lfm_action_lookup,
+ .callback = DDB_ACTION_CALLBACK (lfm_action_lookup),
.next = NULL// &love_action
};