diff options
Diffstat (limited to 'src/tools.c')
-rw-r--r-- | src/tools.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools.c b/src/tools.c index 2c8a9f0..626da2b 100644 --- a/src/tools.c +++ b/src/tools.c | |||
@@ -1117,7 +1117,7 @@ static void lookup_native_func( lua_State* L2, lua_State* L, uint_t i, LookupMod | |||
1117 | * L2 has the cache key for this function at the top of the stack | 1117 | * L2 has the cache key for this function at the top of the stack |
1118 | */ | 1118 | */ |
1119 | 1119 | ||
1120 | #if USE_DEBUG_SPEW | 1120 | #if USE_DEBUG_SPEW() |
1121 | static char const* lua_type_names[] = | 1121 | static char const* lua_type_names[] = |
1122 | { | 1122 | { |
1123 | "LUA_TNIL" | 1123 | "LUA_TNIL" |
@@ -1138,7 +1138,7 @@ static char const* vt_names[] = | |||
1138 | , "VT_KEY" | 1138 | , "VT_KEY" |
1139 | , "VT_METATABLE" | 1139 | , "VT_METATABLE" |
1140 | }; | 1140 | }; |
1141 | #endif // USE_DEBUG_SPEW | 1141 | #endif // USE_DEBUG_SPEW() |
1142 | 1142 | ||
1143 | // Lua 5.4.3 style of dumping (see lstrlib.c) | 1143 | // Lua 5.4.3 style of dumping (see lstrlib.c) |
1144 | // we have to do it that way because we can't unbalance the stack between buffer operations | 1144 | // we have to do it that way because we can't unbalance the stack between buffer operations |