summaryrefslogtreecommitdiffstats
path: root/player/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/lua.c')
-rw-r--r--player/lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player/lua.c b/player/lua.c
index aec9908b69..cee4c118ad 100644
--- a/player/lua.c
+++ b/player/lua.c
@@ -1131,7 +1131,7 @@ static int script_file_info(lua_State *L)
"mode", "size",
"atime", "mtime", "ctime", NULL
};
- const unsigned int stat_values[] = {
+ const lua_Number stat_values[] = {
statbuf.st_mode,
statbuf.st_size,
statbuf.st_atime,
@@ -1141,7 +1141,7 @@ static int script_file_info(lua_State *L)
// Add all fields
for (int i = 0; stat_names[i]; i++) {
- lua_pushinteger(L, stat_values[i]);
+ lua_pushnumber(L, stat_values[i]);
lua_setfield(L, -2, stat_names[i]);
}