Fix build with gcc

MFC after:	3 days
This commit is contained in:
Baptiste Daroussin 2013-10-23 15:29:42 +00:00
parent 8a60ded44f
commit 959bd87986
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=256978

View File

@ -42,11 +42,11 @@ typedef union {
static int
srv_priority_cmp(const void *a, const void *b)
{
const struct dns_srvinfo *da, *db;
unsigned int r, l;
struct dns_srvinfo *da, *db;
da = *(struct dns_srvinfo **)a;
db = *(struct dns_srvinfo **)b;
da = *(struct dns_srvinfo * const *)a;
db = *(struct dns_srvinfo * const *)b;
l = da->priority;
r = db->priority;
@ -57,12 +57,12 @@ srv_priority_cmp(const void *a, const void *b)
static int
srv_final_cmp(const void *a, const void *b)
{
const struct dns_srvinfo *da, *db;
unsigned int r, l, wr, wl;
int res;
struct dns_srvinfo *da, *db;
da = *(struct dns_srvinfo **)a;
db = *(struct dns_srvinfo **)b;
da = *(struct dns_srvinfo * const *)a;
db = *(struct dns_srvinfo * const *)b;
l = da->priority;
r = db->priority;