diff options
| author | ame <[email protected]> | 2025-12-01 04:27:44 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2025-12-01 04:27:44 -0600 |
| commit | 228ba21e4fe702393b5e131ea14bbbfceff3f0b1 (patch) | |
| tree | cb5c43b1a5f3e32001115da83e4239aaefa98e39 /src/lua.c | |
| parent | a187892a6c544e5b19e8429fd447773e4135b4eb (diff) | |
more stderr oh also fprintf not sprintf silly
Diffstat (limited to 'src/lua.c')
| -rw-r--r-- | src/lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -272,11 +272,11 @@ void luaI_deepcopy(lua_State* src, lua_State* dest, enum deep_copy_flags flags){ lua_pushlightuserdata(dest, lua_touserdata(src, -1));
break;
case LUA_TTHREAD:
- sprintf(stderr, "unable to copy LUA_TTHREAD, pushing nil\n");
+ fprintf(stderr, "unable to copy LUA_TTHREAD, pushing nil\n");
lua_pushnil(dest);
break;
default:
- sprintf(stderr, "unknown type %i vs (old)%i\n",lua_type(src, -1), type);
+ fprintf(stderr, "unknown type %i vs (old)%i\n",lua_type(src, -1), type);
//abort();
lua_pushnil(dest);
break;
|
