diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2014-03-03 11:19:56 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-03-03 11:19:56 +0100 |
| commit | 05999ed86d55ca51a9371b0253cdabd734539d1f (patch) | |
| tree | 5c14017db79cba09bd6cb5d09294e0954ba83fe2 /firmware/target/hosted/android/system-android.c | |
| parent | 506b8718fc1d3d71b0ea060145d797924c5d0ef9 (diff) | |
| download | rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.zip rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.tar.gz rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.tar.bz2 rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.tar.xz | |
Fix hostfs_init() return value.
Change-Id: Ic8048e3fa0075de234e8879ba9faad101168bf09
Diffstat (limited to 'firmware/target/hosted/android/system-android.c')
| -rw-r--r-- | firmware/target/hosted/android/system-android.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c index 313bfbc..d13b8d6 100644 --- a/firmware/target/hosted/android/system-android.c +++ b/firmware/target/hosted/android/system-android.c @@ -67,9 +67,10 @@ void system_init(void) telephony_init_device(); } -void hostfs_init(void) +int hostfs_init(void) { /* stub */ + return 0; } int hostfs_flush(void) |