http2: fix log compile errors
This commit is contained in:
parent
6be573f2c9
commit
34842d7492
2 changed files with 2 additions and 2 deletions
|
@ -169,7 +169,7 @@ int lws_http2_frame_write(struct lws *wsi, int type, int flags,
|
|||
*p++ = sid >> 8;
|
||||
*p++ = sid;
|
||||
|
||||
lwsl_info("%s: %p (eff %p). type %d, flags 0x%x, sid=%d, len=%d\n",
|
||||
lwsl_info("%s: %p (eff %p). type %d, flags 0x%x, sid=%d, len=%d, tx_credit=%d\n",
|
||||
__func__, wsi, wsi_eff, type, flags, sid, len,
|
||||
wsi->u.http2.tx_credit);
|
||||
|
||||
|
|
|
@ -492,7 +492,7 @@ send_raw:
|
|||
wsi->u.http.content_length) {
|
||||
wsi->u.http.content_remain -= len;
|
||||
lwsl_info("%s: content_remain = %lu\n", __func__,
|
||||
wsi->u.http.content_remain);
|
||||
(unsigned long)wsi->u.http.content_remain);
|
||||
if (!wsi->u.http.content_remain) {
|
||||
lwsl_info("%s: selecting final write mode\n", __func__);
|
||||
wp = LWS_WRITE_HTTP_FINAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue