From: Christophe Jaillet Date: Thu, 5 May 2016 16:14:22 +0000 (+0000) Subject: Improve alignment X-Git-Tag: 2.5.0-alpha~1646 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef36d3fbb849784cceaa6389c13780de41826dba;p=thirdparty%2Fapache%2Fhttpd.git Improve alignment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1742446 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_session.c b/modules/http2/h2_session.c index 79b3fbc563a..ce5c5c771bb 100644 --- a/modules/http2/h2_session.c +++ b/modules/http2/h2_session.c @@ -57,7 +57,7 @@ static int h2_session_status_from_apr_status(apr_status_t rv) return NGHTTP2_ERR_WOULDBLOCK; } else if (APR_STATUS_IS_EOF(rv)) { - return NGHTTP2_ERR_EOF; + return NGHTTP2_ERR_EOF; } return NGHTTP2_ERR_PROTO; }