From: Jelte Jansen Date: Tue, 13 Nov 2007 09:56:02 +0000 (+0000) Subject: removed %z X-Git-Tag: release-1.3.0~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58d747b97437565a12af28cc8e7b75868a3677ab;p=thirdparty%2Fldns.git removed %z --- diff --git a/examples/ldns-compare-zones.c b/examples/ldns-compare-zones.c index cdf6233d..7f78447e 100644 --- a/examples/ldns-compare-zones.c +++ b/examples/ldns-compare-zones.c @@ -178,7 +178,7 @@ int main(int argc, char **argv) } } - printf("\t%c%zu\t%c%zu\t%c%zu\n", OP_INS, num_ins, OP_DEL, num_del, OP_CHG, num_chg); + printf("\t%c%u\t%c%u\t%c%u\n", OP_INS, (unsigned int) num_ins, OP_DEL, (unsigned int) num_del, OP_CHG, (unsigned int) num_chg); /* Free resources */ ldns_zone_deep_free(z2);