From b3b5e013f71dac9c234258284f95a241e1c3e751 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Thu, 5 May 2016 16:13:43 +0000 Subject: [PATCH] Improve alignment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1742445 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_util.c b/modules/http2/h2_util.c index e6fe45965f..4cfa1649e4 100644 --- a/modules/http2/h2_util.c +++ b/modules/http2/h2_util.c @@ -1465,7 +1465,7 @@ int h2_util_frame_print(const nghttp2_frame *frame, char *buffer, size_t maxlen) } case NGHTTP2_GOAWAY: { size_t len = (frame->goaway.opaque_data_len < s_len)? - frame->goaway.opaque_data_len : s_len-1; + frame->goaway.opaque_data_len : s_len-1; memcpy(scratch, frame->goaway.opaque_data, len); scratch[len] = '\0'; return apr_snprintf(buffer, maxlen, "GOAWAY[error=%d, reason='%s', " -- 2.40.0