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/net.c | |
| parent | a187892a6c544e5b19e8429fd447773e4135b4eb (diff) | |
more stderr oh also fprintf not sprintf silly
Diffstat (limited to 'src/net.c')
| -rw-r--r-- | src/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -878,7 +878,7 @@ void* handle_client(void *_arg){ //call the function
if(lua_pcall(L, 2, 0, 0) != 0){
- printf("(net thread) %s\n", lua_tostring(L, -1));
+ fprintf(stderr, "(net thread) %s\n", lua_tostring(L, -1));
//send an error message if send has not been called
if(client_fd >= 0) net_error(client_fd, 500);
|
