From: Rainer Jung Date: Tue, 19 Jan 2016 11:31:54 +0000 (+0000) Subject: Silence compiler warning: X-Git-Tag: 2.5.0-alpha~2379 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38c527a6cd80d1284dd191f7d2b68c2b8c24a1f8;p=thirdparty%2Fapache%2Fhttpd.git Silence compiler warning: format '%ld' expects argument of type 'long int', but argument 10 has type 'apr_uint64_t' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725473 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_push.c b/modules/http2/h2_push.c index fa0154b564b..89dd2dcef38 100644 --- a/modules/http2/h2_push.c +++ b/modules/http2/h2_push.c @@ -790,8 +790,8 @@ static apr_status_t gset_encode_next(gset_encoder *encoder, apr_uint64_t pval) flex_bits = (delta >> encoder->fixed_bits); ap_log_perror(APLOG_MARK, GCSLOG_LEVEL, 0, encoder->pool, "h2_push_diary_enc: val=%"APR_UINT64_T_HEX_FMT", delta=%" - APR_UINT64_T_HEX_FMT" flex_bits=%ld, " - "fixed_bits=%d, fixed_val=%"APR_UINT64_T_HEX_FMT, + APR_UINT64_T_HEX_FMT" flex_bits=%" APR_UINT64_T_FMT + ", fixed_bits=%d, fixed_val=%"APR_UINT64_T_HEX_FMT, pval, delta, flex_bits, encoder->fixed_bits, delta&encoder->fixed_mask); for (; flex_bits != 0; --flex_bits) { status = gset_encode_bit(encoder, 1);