use %u instead of %d

This commit is contained in:
Mark Andrews
2018-02-15 13:23:11 +11:00
parent e632696a6d
commit 5bc9ede092

View File

@@ -2274,7 +2274,7 @@ print_contexts(FILE *file) {
ctx != NULL;
ctx = ISC_LIST_NEXT(ctx, link))
{
fprintf(file, "context: %p (%s): %d references\n",
fprintf(file, "context: %p (%s): %u references\n",
ctx,
ctx->name[0] == 0 ? "<unknown>" : ctx->name,
ctx->references);