cosmetic fix trailing newline on log
This commit is contained in:
parent
4ca114fbcf
commit
ab89246467
1 changed files with 2 additions and 2 deletions
|
@ -552,7 +552,7 @@ just_kill_connection:
|
|||
(wsi->mode == LWSCM_WS_SERVING && wsi->state_pre_close == LWSS_HTTP))) {
|
||||
|
||||
if (wsi->user_space) {
|
||||
lwsl_debug("%s: doing LWS_CALLBACK_HTTP_DROP_PROTOCOL for %p prot %s", __func__, wsi, wsi->protocol->name);
|
||||
lwsl_debug("%s: doing LWS_CALLBACK_HTTP_DROP_PROTOCOL for %p prot %s\n", __func__, wsi, wsi->protocol->name);
|
||||
wsi->protocol->callback(wsi,
|
||||
LWS_CALLBACK_HTTP_DROP_PROTOCOL,
|
||||
wsi->user_space, NULL, 0);
|
||||
|
@ -1147,7 +1147,7 @@ lws_get_protocol(struct lws *wsi)
|
|||
LWS_VISIBLE int
|
||||
lws_is_final_fragment(struct lws *wsi)
|
||||
{
|
||||
lwsl_info("%s: final %d, rx pk length %ld, draining %ld", __func__,
|
||||
lwsl_info("%s: final %d, rx pk length %ld, draining %ld\n", __func__,
|
||||
wsi->u.ws.final, (long)wsi->u.ws.rx_packet_length,
|
||||
(long)wsi->u.ws.rx_draining_ext);
|
||||
return wsi->u.ws.final && !wsi->u.ws.rx_packet_length && !wsi->u.ws.rx_draining_ext;
|
||||
|
|
Loading…
Add table
Reference in a new issue