summaryrefslogtreecommitdiff
path: root/apps/hosted/android
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-03-14 23:43:45 +0100
committerThomas Martitz <kugel@rockbox.org>2014-03-14 23:43:45 +0100
commit361aa9263d51dcd3f8951b0da31aba77758726a9 (patch)
tree617ee1d90c903b4b7f28307b6f7035019d60ea6b /apps/hosted/android
parent470989bd708d9a425dbbf2d83b8fcbd0a8d0f488 (diff)
Fix reds.
Change-Id: I4f065a5b9f96df4d70ee8bb2836effc9b97b01fa
Diffstat (limited to 'apps/hosted/android')
-rw-r--r--apps/hosted/android/notification.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/hosted/android/notification.c b/apps/hosted/android/notification.c
index 66715d26f9..39c8b07737 100644
--- a/apps/hosted/android/notification.c
+++ b/apps/hosted/android/notification.c
@@ -146,6 +146,6 @@ void notification_init(void)
finishNotification = e->GetMethodID(env_ptr, class, "finishNotification",
"()V");
- add_event(PLAYBACK_EVENT_TRACK_CHANGE track_changed_callback);
- add_event(PLAYBACK_EVENT_TRACK_FINISH track_finished_callback);
+ add_event(PLAYBACK_EVENT_TRACK_CHANGE, track_changed_callback);
+ add_event(PLAYBACK_EVENT_TRACK_FINISH, track_finished_callback);
}