Skip to content

Commit

Permalink
removed output to stderr from poll callback
Browse files Browse the repository at this point in the history
  • Loading branch information
sneusse authored and squeek502 committed Aug 15, 2022
1 parent 1f255a7 commit 7b0f5b8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ static void luv_poll_cb(uv_poll_t* handle, int status, int events) {
const char* evtstr;

if (status < 0) {
fprintf(stderr, "%s: %s\n", uv_err_name(status), uv_strerror(status));
lua_pushstring(L, uv_err_name(status));
}
else {
Expand Down

0 comments on commit 7b0f5b8

Please sign in to comment.