rid warnings on netbsd

This commit is contained in:
Doug MacEachern 2008-03-16 02:43:08 +00:00
parent 70bfdee076
commit 13f57bf914
1 changed files with 2 additions and 2 deletions

View File

@ -2524,7 +2524,7 @@ static int net_connection_get(sigar_net_connection_walker_t *walker, int proto)
prev = head =
(struct inpcb *)&CIRCLEQ_FIRST(&((struct inpcbtable *)offset)->inpt_queue);
next = CIRCLEQ_FIRST(&table.inpt_queue);
next = (struct inpcb *)CIRCLEQ_FIRST(&table.inpt_queue);
while (next != head) {
struct inpcb inpcb;
@ -2533,7 +2533,7 @@ static int net_connection_get(sigar_net_connection_walker_t *walker, int proto)
status = kread(sigar, &inpcb, sizeof(inpcb), (long)next);
prev = next;
next = CIRCLEQ_NEXT(&inpcb, inp_queue);
next = (struct inpcb *)CIRCLEQ_NEXT(&inpcb, inp_queue);
kread(sigar, &socket, sizeof(socket), (u_long)inpcb.inp_socket);