summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-03-03 11:19:56 +0100
committerThomas Martitz <kugel@rockbox.org>2014-03-03 11:19:56 +0100
commit05999ed86d55ca51a9371b0253cdabd734539d1f (patch)
tree5c14017db79cba09bd6cb5d09294e0954ba83fe2 /firmware/target/hosted/sdl
parent506b8718fc1d3d71b0ea060145d797924c5d0ef9 (diff)
downloadrockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.tar.gz
rockbox-05999ed86d55ca51a9371b0253cdabd734539d1f.zip
Fix hostfs_init() return value.
Change-Id: Ic8048e3fa0075de234e8879ba9faad101168bf09
Diffstat (limited to 'firmware/target/hosted/sdl')
-rw-r--r--firmware/target/hosted/sdl/system-sdl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c
index 25e77c22a2..fdf79d9333 100644
--- a/firmware/target/hosted/sdl/system-sdl.c
+++ b/firmware/target/hosted/sdl/system-sdl.c
@@ -289,9 +289,10 @@ void system_exception_wait(void)
289 system_reboot(); 289 system_reboot();
290} 290}
291 291
292void hostfs_init(void) 292int hostfs_init(void)
293{ 293{
294 /* stub */ 294 /* stub */
295 return 0;
295} 296}
296 297
297#ifdef HAVE_STORAGE_FLUSH 298#ifdef HAVE_STORAGE_FLUSH