Skip to content

Commit

Permalink
remove a printf
Browse files Browse the repository at this point in the history
  • Loading branch information
voutilad committed Dec 1, 2023
1 parent 247d1ac commit 48f3bd5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion dws.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ ws_write(struct websocket *ws, const void *buf, size_t buflen)
crap(1, "tls_write: %s", tls_error(ws->ctx));
} else {
sz = write(ws->s, _buf, (size_t) _buflen);
printf("%s: wrote %zd bytes\n", __func__, sz);
if (sz == -1 && errno == EAGAIN)
continue;
else if (sz == -1)
Expand Down

0 comments on commit 48f3bd5

Please sign in to comment.