diff options
Diffstat (limited to 'src/tracker.cpp')
-rw-r--r-- | src/tracker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tracker.cpp b/src/tracker.cpp index 8b06522..34866dd 100644 --- a/src/tracker.cpp +++ b/src/tracker.cpp | |||
@@ -96,7 +96,7 @@ int LaneTracker::pushThreadsTable(lua_State* L_) const | |||
96 | while (_lane != TRACKING_END) { | 96 | while (_lane != TRACKING_END) { |
97 | // insert a { name='<name>', status='<status>' } tuple, so that several lanes with the same name can't clobber each other | 97 | // insert a { name='<name>', status='<status>' } tuple, so that several lanes with the same name can't clobber each other |
98 | lua_createtable(L_, 0, 2); // L_: {} {} | 98 | lua_createtable(L_, 0, 2); // L_: {} {} |
99 | luaG_pushstring(L_, _lane->getDebugName()); // L_: {} {} "name" | 99 | luaW_pushstring(L_, _lane->getDebugName()); // L_: {} {} "name" |
100 | lua_setfield(L_, -2, "name"); // L_: {} {} | 100 | lua_setfield(L_, -2, "name"); // L_: {} {} |
101 | _lane->pushStatusString(L_); // L_: {} {} "<status>" | 101 | _lane->pushStatusString(L_); // L_: {} {} "<status>" |
102 | lua_setfield(L_, -2, "status"); // L_: {} {} | 102 | lua_setfield(L_, -2, "status"); // L_: {} {} |