diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-12 16:43:52 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-12 16:43:52 +0000 |
| commit | 0189b9a1fde3dfb91e29153c43eb9d465a983d0a (patch) | |
| tree | 6a73614f37a15edf356caece0e84027bf83730b0 | |
| parent | e23c7d861288d0d527c73a986c78d5f8d76007e9 (diff) | |
Notes
| -rw-r--r-- | sys/netinet/ip_dummynet.c | 6 |
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); } |
