aboutsummaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-05-11 14:30:36 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-18 09:33:47 +0200
commita66ed407d2ba40d95d1a68603b20bcd3bf036802 (patch)
treeeeb2552592d4ccd5ec48a920b11989b3ef099414 /lib/http2.c
parent61a94d6f77f78c72e15e34910dd4e0e035bc7bc7 (diff)
http2: "stream %x" in all outputs to make it easier to search for
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 0167ef9be..9e782a5aa 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -353,7 +353,7 @@ static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
(void)flags;
(void)data;
DEBUGF(infof(conn->data, "on_data_chunk_recv() "
- "len = %u, stream = %x\n", len, stream_id));
+ "len = %u, stream %x\n", len, stream_id));
DEBUGASSERT(stream_id); /* should never be a zero stream ID here */
@@ -792,7 +792,7 @@ static ssize_t http2_handle_stream_close(struct http_conn *httpc,
function. */
stream->closed = FALSE;
if(stream->error_code != NGHTTP2_NO_ERROR) {
- failf(data, "HTTP/2 stream = %x was not closed cleanly: error_code = %d",
+ failf(data, "HTTP/2 stream %x was not closed cleanly: error_code = %d",
stream->stream_id, stream->error_code);
*err = CURLE_HTTP2;
return -1;