From 0c7a7793a58be51ba39e6999baa8d62fb2e4f279 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 9 Mar 2016 15:02:17 +1100 Subject: [PATCH] silence compiler warning (cherry picked from commit fa8b66c5f4e6589c6574be0d42b94fbd3084326e) --- lib/dns/masterdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/masterdump.c b/lib/dns/masterdump.c index dc0c29ad68..5ef0089213 100644 --- a/lib/dns/masterdump.c +++ b/lib/dns/masterdump.c @@ -337,7 +337,7 @@ totext_ctx_init(const dns_master_style_t *style, dns_totext_ctx_t *ctx) { return (DNS_R_TEXTTOOLONG); isc_buffer_putmem(&buf, (const isc_uint8_t *) dns_master_indentstr, - ilen); + (unsigned int)ilen); } if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) {