Browse Source

Fix printf formating tag %d -> %s

ahc_fix_select
tedbullock 17 years ago
parent
commit
25f3a11a25
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      httperf/src/idleconn.c

+ 1
- 1
httperf/src/idleconn.c View File

@@ -142,7 +142,7 @@ dns_lookup_callback(int result, char type, int count, int ttl, void *addresses,
struct in_addr *address_list = (struct in_addr *) addresses;

if (result != DNS_ERR_NONE) {
printf("DNS Lookup: result(%d)\n",
printf("DNS Lookup: result(%s)\n",
evdns_err_to_string(result));
exit(EXIT_FAILURE);
}


Loading…
Cancel
Save