summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/loslib.c
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-27 23:02:17 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-27 23:02:17 +0000
commit1e980cd9776b27a4251f5b78d4bc87098e55ca07 (patch)
tree919af734f644720cf8e0030a4639a3599d4e35dd /apps/plugins/lua/loslib.c
parentb2581e143d7c9a564026fbe3bf4f471b2260fd0f (diff)
downloadrockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.tar.gz
rockbox-1e980cd9776b27a4251f5b78d4bc87098e55ca07.zip
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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lua/loslib.c b/apps/plugins/lua/loslib.c
index 9d29e905e1..19fef84a9c 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) {
67 lua_setfield(L, -2, key); 67 lua_setfield(L, -2, key);
68} 68}
69 69
70#if CONFIG_RTC
70static int getboolfield (lua_State *L, const char *key) { 71static int getboolfield (lua_State *L, const char *key) {
71 int res; 72 int res;
72 lua_getfield(L, -1, key); 73 lua_getfield(L, -1, key);
@@ -89,6 +90,7 @@ static int getfield (lua_State *L, const char *key, int d) {
89 lua_pop(L, 1); 90 lua_pop(L, 1);
90 return res; 91 return res;
91} 92}
93#endif
92 94
93 95
94static int os_date (lua_State *L) { 96static int os_date (lua_State *L) {