Skip to content

Commit

Permalink
nghttpx: Use char instead of char[] if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Jan 22, 2017
1 parent db938af commit 2fc2a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shrpx_https_upstream.cc
Expand Up @@ -1029,7 +1029,7 @@ int HttpsUpstream::on_downstream_header_complete(Downstream *downstream) {

buf->append("HTTP/");
buf->append(util::utos(req.http_major));
buf->append(".");
buf->append('.');
buf->append(util::utos(req.http_minor));
buf->append(' ');
buf->append(http2::stringify_status(balloc, resp.http_status));
Expand Down

0 comments on commit 2fc2a27

Please sign in to comment.