aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1999-01-12 16:43:52 +0000
committerEivind Eklund <eivind@FreeBSD.org>1999-01-12 16:43:52 +0000
commit0189b9a1fde3dfb91e29153c43eb9d465a983d0a (patch)
tree6a73614f37a15edf356caece0e84027bf83730b0
parente23c7d861288d0d527c73a986c78d5f8d76007e9 (diff)
Notes
-rw-r--r--sys/netinet/ip_dummynet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_dummynet.c b/sys/netinet/ip_dummynet.c
index 51a6cd757346..e495b60450b0 100644
--- a/sys/netinet/ip_dummynet.c
+++ b/sys/netinet/ip_dummynet.c
@@ -10,7 +10,7 @@
*
* This software is provided ``AS IS'' without any warranties of any kind.
*
- * $Id: ip_dummynet.c,v 1.5 1999/01/12 12:27:54 eivind Exp $
+ * $Id: ip_dummynet.c,v 1.6 1999/01/12 16:40:57 eivind Exp $
*/
/*
@@ -181,7 +181,7 @@ dn_move(struct dn_pipe *pipe, int immediate)
if ( ( pkt == NULL && pipe->r_len != 0) ||
( pkt != NULL && pipe->r_len == 0) )
printf("-- Warning, pipe head %p len %d\n",
- pkt, pipe->r_len);
+ (void *)pkt, pipe->r_len);
}
/*
@@ -430,7 +430,7 @@ dn_rule_delete(void *r)
}
}
printf("dn_rule_delete, r %p, default %p%s, %d matches\n",
- r, ip_fw_default_rule,
+ (void *)r, (void *)ip_fw_default_rule,
r == ip_fw_default_rule ? " AARGH!":"", matches);
}