summaryrefslogtreecommitdiff
path: root/modules/http2/h2_stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/http2/h2_stream.h')
-rw-r--r--modules/http2/h2_stream.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/http2/h2_stream.h b/modules/http2/h2_stream.h
index 110c11efa3..c24e9028e6 100644
--- a/modules/http2/h2_stream.h
+++ b/modules/http2/h2_stream.h
@@ -285,7 +285,8 @@ const char *h2_stream_state_str(const h2_stream *stream);
int h2_stream_is_ready(h2_stream *stream);
#define H2_STRM_MSG(s, msg) \
- "h2_stream(%ld-%d,%s): "msg, s->session->id, s->id, h2_stream_state_str(s)
+ "h2_stream(%d-%lu-%d,%s): "msg, s->session->child_num, \
+ (unsigned long)s->session->id, s->id, h2_stream_state_str(s)
#define H2_STRM_LOG(aplogno, s, msg) aplogno H2_STRM_MSG(s, msg)