Fix reds.

Change-Id: I4f065a5b9f96df4d70ee8bb2836effc9b97b01fa
This commit is contained in:
Thomas Martitz 2014-03-14 23:43:45 +01:00
parent 470989bd70
commit 361aa9263d
2 changed files with 4 additions and 2 deletions

View file

@ -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);
}