From 042055968ab0c48faec607889814e38c50c09efa Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Fri, 4 Jul 2025 13:50:53 +0200 Subject: Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) --- src/tracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tracker.cpp') 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 while (_lane != TRACKING_END) { // insert a { name='', status='' } tuple, so that several lanes with the same name can't clobber each other lua_createtable(L_, 0, 2); // L_: {} {} - luaG_pushstring(L_, _lane->getDebugName()); // L_: {} {} "name" + luaW_pushstring(L_, _lane->getDebugName()); // L_: {} {} "name" lua_setfield(L_, -2, "name"); // L_: {} {} _lane->pushStatusString(L_); // L_: {} {} "" lua_setfield(L_, -2, "status"); // L_: {} {} -- cgit v1.2.3-55-g6feb