Fix compile error with --enable-debug
This commit is contained in:
parent
455d911f61
commit
16101b8b3f
|
@ -4304,7 +4304,7 @@ ssize_t nghttp2_session_mem_recv(nghttp2_session *session,
|
||||||
|
|
||||||
if(iframe->frame.hd.length > session->local_settings.max_frame_size) {
|
if(iframe->frame.hd.length > session->local_settings.max_frame_size) {
|
||||||
DEBUGF(fprintf(stderr,
|
DEBUGF(fprintf(stderr,
|
||||||
"recv: length is too large %u > %u\n",
|
"recv: length is too large %zu > %u\n",
|
||||||
iframe->frame.hd.length,
|
iframe->frame.hd.length,
|
||||||
session->local_settings.max_frame_size));
|
session->local_settings.max_frame_size));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue