summaryrefslogtreecommitdiff
path: root/src/ffi/compat53.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffi/compat53.rs')
-rw-r--r--src/ffi/compat53.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffi/compat53.rs b/src/ffi/compat53.rs
index 3d8af28..f4a2a01 100644
--- a/src/ffi/compat53.rs
+++ b/src/ffi/compat53.rs
@@ -680,7 +680,7 @@ pub unsafe fn luaL_traceback(
msg: *const c_char,
mut level: c_int,
) {
- let mut ar: lua_Debug = std::mem::zeroed();
+ let mut ar: lua_Debug = mem::zeroed();
let top = lua_gettop(L);
let numlevels = compat53_countlevels(L1);
let mark = if numlevels > COMPAT53_LEVELS1 + COMPAT53_LEVELS2 {