diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-01-30 23:27:44 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-01-30 23:27:44 +0000 |
commit | 73681ff4ef9d31dce166497e441487523545f19f (patch) | |
tree | 270ac4f401ca0d4be394b8ed6c74f2961fda418f /uisimulator/common | |
parent | 25a1add8cf8486b2297f2e62aaf1e0d4adca013e (diff) |
inconsistent argument type for backlight_set_timeout() fixed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4287 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common')
-rw-r--r-- | uisimulator/common/stubs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 533b909786..23a6728db4 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -114,9 +114,9 @@ bool simulate_usb(void) return false; } -void backlight_set_timeout(int seconds) +void backlight_set_timeout(int index) { - (void)seconds; + (void)index; } void backlight_set_on_when_charging(bool beep) |