From 16101b8b3fb754b97530e81e5ba59fc99e087781 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 2 Aug 2014 10:16:32 +0900 Subject: [PATCH] Fix compile error with --enable-debug --- lib/nghttp2_session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nghttp2_session.c b/lib/nghttp2_session.c index 4af8b986..8855bade 100644 --- a/lib/nghttp2_session.c +++ b/lib/nghttp2_session.c @@ -4304,7 +4304,7 @@ ssize_t nghttp2_session_mem_recv(nghttp2_session *session, if(iframe->frame.hd.length > session->local_settings.max_frame_size) { DEBUGF(fprintf(stderr, - "recv: length is too large %u > %u\n", + "recv: length is too large %zu > %u\n", iframe->frame.hd.length, session->local_settings.max_frame_size));