Commit 6e612703 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

src: Fix compiler warning

parent 9314e309
......@@ -185,7 +185,7 @@ void print_timer()
namespace {
void print_frame_hd(const nghttp2_frame_hd& hd)
{
printf("<length=%d, flags=0x%02x, stream_id=%d>\n",
printf("<length=%zu, flags=0x%02x, stream_id=%d>\n",
hd.length, hd.flags, hd.stream_id);
}
} // namespace
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment