diff options
Diffstat (limited to 'c-api/compat-5.3.c')
-rw-r--r-- | c-api/compat-5.3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c-api/compat-5.3.c b/c-api/compat-5.3.c index 883efb8..fab89c0 100644 --- a/c-api/compat-5.3.c +++ b/c-api/compat-5.3.c | |||
@@ -110,7 +110,7 @@ COMPAT53_API void lua_len (lua_State *L, int i) { | |||
110 | case LUA_TUSERDATA: | 110 | case LUA_TUSERDATA: |
111 | if (luaL_callmeta(L, i, "__len")) | 111 | if (luaL_callmeta(L, i, "__len")) |
112 | break; | 112 | break; |
113 | /* maybe fall through */ | 113 | /* FALLTHROUGH */ |
114 | default: | 114 | default: |
115 | luaL_error(L, "attempt to get length of a %s value", | 115 | luaL_error(L, "attempt to get length of a %s value", |
116 | lua_typename(L, lua_type(L, i))); | 116 | lua_typename(L, lua_type(L, i))); |