]> granicus.if.org Git - apache/commitdiff
Improve alignment
authorChristophe Jaillet <jailletc36@apache.org>
Thu, 5 May 2016 16:13:43 +0000 (16:13 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Thu, 5 May 2016 16:13:43 +0000 (16:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1742445 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_util.c

index e6fe45965f54faed457e097731b8c554cac09e3f..4cfa1649e4018ac442c96df6b48285d222dcd435 100644 (file)
@@ -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', "