From: Mark Andrews Date: Wed, 14 Feb 2018 13:03:05 +0000 (+1100) Subject: use %u instead of %d X-Git-Tag: v9.13.0~155^2~3^2~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f8b0dc5d47515e3572826fd583731cd7777f342;p=thirdparty%2Fbind9.git use %u instead of %d --- diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index 32bd83f6cfd..c0f254b1292 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -11101,7 +11101,7 @@ dns_resolver_dumpfetches(dns_resolver_t *resolver, fc = ISC_LIST_NEXT(fc, link)) { dns_name_print(fc->domain, fp); - fprintf(fp, ": %d active (%d spilled, %d allowed)\n", + fprintf(fp, ": %u active (%u spilled, %u allowed)\n", fc->count, fc->dropped, fc->allowed); } UNLOCK(&resolver->dbuckets[i].lock);