diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-03-30 11:21:31 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-03-30 11:23:07 +0200 |
| commit | 4e8893b87489849d8294e9787e070a62b6669373 (patch) | |
| tree | 24c4fb9e8221a693f69e2ce813acc6633ccc90e1 /apps | |
| parent | 3414c952b9dea0d22c5cd0f2b3993f12f6114cf8 (diff) | |
| download | rockbox-4e8893b87489849d8294e9787e070a62b6669373.zip rockbox-4e8893b87489849d8294e9787e070a62b6669373.tar.gz rockbox-4e8893b87489849d8294e9787e070a62b6669373.tar.bz2 rockbox-4e8893b87489849d8294e9787e070a62b6669373.tar.xz | |
android: Fix crash on start up.
Change-Id: I0343de9347d100182c2ffd28058ac61f15097cc3
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/hosted/android/notification.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/hosted/android/notification.c b/apps/hosted/android/notification.c index 2c814b0..4bb8d0a 100644 --- a/apps/hosted/android/notification.c +++ b/apps/hosted/android/notification.c @@ -124,7 +124,7 @@ void notification_init(void) { JNIEnv e = *env_ptr; jfieldID nNM = e->GetFieldID(env_ptr, RockboxService_class, - "fg_runner", "Lorg/rockbox/Helper/RunForegroundManager;"); + "mFgRunner", "Lorg/rockbox/Helper/RunForegroundManager;"); NotificationManager_instance = e->GetObjectField(env_ptr, RockboxService_instance, nNM); if (NotificationManager_instance == NULL) |