diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-27 23:02:17 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-27 23:02:17 +0000 |
| commit | 1e980cd9776b27a4251f5b78d4bc87098e55ca07 (patch) | |
| tree | 919af734f644720cf8e0030a4639a3599d4e35dd /apps/plugins/lua/loslib.c | |
| parent | b2581e143d7c9a564026fbe3bf4f471b2260fd0f (diff) | |
| download | rockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.zip rockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.tar.gz rockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.tar.bz2 rockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.tar.xz | |
Fix yellow & red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21107 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/loslib.c')
| -rw-r--r-- | apps/plugins/lua/loslib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lua/loslib.c b/apps/plugins/lua/loslib.c index 9d29e90..19fef84 100644 --- a/apps/plugins/lua/loslib.c +++ b/apps/plugins/lua/loslib.c @@ -67,6 +67,7 @@ static void setboolfield (lua_State *L, const char *key, int value) { lua_setfield(L, -2, key); } +#if CONFIG_RTC static int getboolfield (lua_State *L, const char *key) { int res; lua_getfield(L, -1, key); @@ -89,6 +90,7 @@ static int getfield (lua_State *L, const char *key, int d) { lua_pop(L, 1); return res; } +#endif static int os_date (lua_State *L) { |