summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-02-05 09:22:29 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-02-05 09:22:29 +0000
commit0ac26480ccf062c17bdbb861274de813ab0adcad (patch)
treef3d3912312ba0cabd0e48f3984f3490ba1d852f4
parent04f9cc79937a6939e800c646b4c8e9650898bd7e (diff)
downloadrockbox-0ac26480ccf062c17bdbb861274de813ab0adcad.tar.gz
rockbox-0ac26480ccf062c17bdbb861274de813ab0adcad.zip
fixed a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4294 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 8682deb60e..9728dc4ac4 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -205,7 +205,7 @@ struct plugin_api {
205 struct user_settings* global_settings; 205 struct user_settings* global_settings;
206 void (*backlight_set_timeout)(int index); 206 void (*backlight_set_timeout)(int index);
207#ifndef SIMULATOR 207#ifndef SIMULATOR
208 void (*ata_sleep)(void); 208 int (*ata_sleep)(void);
209#endif 209#endif
210}; 210};
211 211