aboutsummaryrefslogtreecommitdiff
path: root/deps/nghttp2/lib/nghttp2_stream.c
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-12-28 15:16:37 -0800
committerJames M Snell <jasnell@gmail.com>2017-12-30 10:02:40 -0800
commitcfca536d8f18271db841338da8fb591fc6e92675 (patch)
tree50f3ce36706cce439f62f137c4b4b23a8d6a3f3a /deps/nghttp2/lib/nghttp2_stream.c
parent27470e4ec719bd773742b2ac9e1ccc03a67ae0b9 (diff)
downloadandroid-node-v8-cfca536d8f18271db841338da8fb591fc6e92675.tar.gz
android-node-v8-cfca536d8f18271db841338da8fb591fc6e92675.tar.bz2
android-node-v8-cfca536d8f18271db841338da8fb591fc6e92675.zip
deps: update nghttp2 to 1.29.0
PR-URL: https://github.com/nodejs/node/pull/17908 Refs: https://github.com/nodejs/node/issues/17746 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'deps/nghttp2/lib/nghttp2_stream.c')
-rw-r--r--deps/nghttp2/lib/nghttp2_stream.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/deps/nghttp2/lib/nghttp2_stream.c b/deps/nghttp2/lib/nghttp2_stream.c
index 8dee6ef660..eccd3174ef 100644
--- a/deps/nghttp2/lib/nghttp2_stream.c
+++ b/deps/nghttp2/lib/nghttp2_stream.c
@@ -366,8 +366,9 @@ static void check_queued(nghttp2_stream *stream) {
}
}
if (queued == 0) {
- fprintf(stderr, "stream(%p)=%d, stream->queued == 1, and "
- "!stream_active(), but no descendants is queued\n",
+ fprintf(stderr,
+ "stream(%p)=%d, stream->queued == 1, and "
+ "!stream_active(), but no descendants is queued\n",
stream, stream->stream_id);
assert(0);
}
@@ -378,9 +379,10 @@ static void check_queued(nghttp2_stream *stream) {
}
} else {
if (stream_active(stream) || !nghttp2_pq_empty(&stream->obq)) {
- fprintf(stderr, "stream(%p) = %d, stream->queued == 0, but "
- "stream_active(stream) == %d and "
- "nghttp2_pq_size(&stream->obq) = %zu\n",
+ fprintf(stderr,
+ "stream(%p) = %d, stream->queued == 0, but "
+ "stream_active(stream) == %d and "
+ "nghttp2_pq_size(&stream->obq) = %zu\n",
stream, stream->stream_id, stream_active(stream),
nghttp2_pq_size(&stream->obq));
assert(0);