aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/atm_subr.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-09-17 09:35:02 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-09-17 09:35:02 +0000
commitd80044954c92be2d8b7d49d93b73db0e9eb500b4 (patch)
tree8a98c94ccd7bf695ca5176aa3c7aae61180fe043 /sys/netatm/atm_subr.c
parent982fe76ef93c4b22fb5aed84c52dceeed3ed0d14 (diff)
downloadsrc-d80044954c92be2d8b7d49d93b73db0e9eb500b4.tar.gz
src-d80044954c92be2d8b7d49d93b73db0e9eb500b4.zip
Two patches from the HARP people:
Various Makefile related fixes. -Wformat fixes. Submitted by: Mike Spengler <mks@networkcs.com>
Notes
Notes: svn path=/head/; revision=39412
Diffstat (limited to 'sys/netatm/atm_subr.c')
-rw-r--r--sys/netatm/atm_subr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netatm/atm_subr.c b/sys/netatm/atm_subr.c
index 40fc433d3d5b..3fcf36e16a79 100644
--- a/sys/netatm/atm_subr.c
+++ b/sys/netatm/atm_subr.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atm_subr.c,v 1.10 1998/05/18 19:06:02 mks Exp $
+ * @(#) $Id: atm_subr.c,v 1.1 1998/09/15 08:22:59 phk Exp $
*
*/
@@ -36,7 +36,7 @@
*/
#ifndef lint
-static char *RCSid = "@(#) $Id: atm_subr.c,v 1.10 1998/05/18 19:06:02 mks Exp $";
+static char *RCSid = "@(#) $Id: atm_subr.c,v 1.1 1998/09/15 08:22:59 phk Exp $";
#endif
#include <netatm/kern_include.h>
@@ -953,8 +953,8 @@ atm_pdu_print(m, msg)
printf("%s:", msg);
while (m) {
KB_DATASTART(m, cp, caddr_t);
- printf("%cbfr=0x%x data=0x%x len=%d: ",
- c, (int)m, (int)cp, KB_LEN(m));
+ printf("%cbfr=%p data=%p len=%d: ",
+ c, m, cp, KB_LEN(m));
c = '\t';
if (atm_print_data) {
for (i = 0; i < KB_LEN(m); i++) {