diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-22 00:28:26 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-22 00:28:26 +0000 |
commit | ba46c88c6f077f7e6e1c266e9742870802037b68 (patch) | |
tree | 8a663c4f83c4f11d19360c044a351e8bd7ced252 /uisimulator | |
parent | 8302c5fe17b0c9e74f1c1d9941c852153516387d (diff) | |
download | rockbox-ba46c88c6f077f7e6e1c266e9742870802037b68.tar.gz rockbox-ba46c88c6f077f7e6e1c266e9742870802037b68.zip |
rtc_enable_alarm() needs no return value
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26245 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-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 2aa0f12f89..ee0c9f113c 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c | |||
@@ -169,9 +169,9 @@ void rtc_set_alarm(int h, int m) | |||
169 | (void)m; | 169 | (void)m; |
170 | } | 170 | } |
171 | 171 | ||
172 | bool rtc_enable_alarm(bool enable) | 172 | void rtc_enable_alarm(bool enable) |
173 | { | 173 | { |
174 | return enable; | 174 | (void)enable; |
175 | } | 175 | } |
176 | 176 | ||
177 | extern bool sim_alarm_wakeup; | 177 | extern bool sim_alarm_wakeup; |