use %u instead of %d

This commit is contained in:
Mark Andrews
2018-02-15 14:23:15 +11:00
parent fc38731c85
commit 8f8ce953ce
2 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2009, 2013-2016 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2009, 2013-2016, 2018 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -161,7 +161,7 @@ process_answer(isc_task_t *task, isc_event_t *event) {
printf("answer[%2d]\n", trans->id);
if (rev->result != ISC_R_SUCCESS)
printf(" failed: %d(%s)\n", rev->result,
printf(" failed: %u(%s)\n", rev->result,
dns_result_totext(rev->result));
for (name = ISC_LIST_HEAD(rev->answerlist); name != NULL;
@@ -323,14 +323,14 @@ main(int argc, char *argv[]) {
isc_lib_register();
result = dns_lib_init();
if (result != ISC_R_SUCCESS) {
fprintf(stderr, "dns_lib_init failed: %d\n", result);
fprintf(stderr, "dns_lib_init failed: %u\n", result);
exit(1);
}
result = ctxs_init(&mctx, &query_actx, &taskmgr, &socketmgr,
&timermgr);
if (result != ISC_R_SUCCESS) {
fprintf(stderr, "ctx create failed: %d\n", result);
fprintf(stderr, "ctx create failed: %u\n", result);
exit(1);
}
@@ -339,7 +339,7 @@ main(int argc, char *argv[]) {
result = dns_client_createx(mctx, query_actx, taskmgr, socketmgr,
timermgr, 0, &client);
if (result != ISC_R_SUCCESS) {
fprintf(stderr, "dns_client_createx failed: %d\n", result);
fprintf(stderr, "dns_client_createx failed: %u\n", result);
exit(1);
}
@@ -357,7 +357,7 @@ main(int argc, char *argv[]) {
result = dns_client_setservers(client, dns_rdataclass_in, NULL,
&servers);
if (result != ISC_R_SUCCESS) {
fprintf(stderr, "set server failed: %d\n", result);
fprintf(stderr, "set server failed: %u\n", result);
exit(1);
}
@@ -365,7 +365,7 @@ main(int argc, char *argv[]) {
query_task = NULL;
result = isc_task_create(taskmgr, 0, &query_task);
if (result != ISC_R_SUCCESS) {
fprintf(stderr, "failed to create task: %d\n", result);
fprintf(stderr, "failed to create task: %u\n", result);
exit(1);
}