From ebe2160d0da10bfb63e5a2f2b108dcfd6747cad4 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Tue, 12 Jun 2018 17:14:23 +0000 Subject: [PATCH] Remove extra and un-needed "" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1833416 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_session.c b/modules/http2/h2_session.c index e7fbc9ecbb..3b9ac75e87 100644 --- a/modules/http2/h2_session.c +++ b/modules/http2/h2_session.c @@ -1215,7 +1215,7 @@ apr_status_t h2_session_set_prio(h2_session *session, h2_stream *stream, rv = nghttp2_session_change_stream_priority(session->ngh2, stream->id, &ps); ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c, - ""H2_STRM_LOG(APLOGNO(03203), stream, + H2_STRM_LOG(APLOGNO(03203), stream, "PUSH %s, weight=%d, depends=%d, returned=%d"), ptype, ps.weight, ps.stream_id, rv); status = (rv < 0)? APR_EGENERAL : APR_SUCCESS;