summaryrefslogtreecommitdiffstats
path: root/sys/netatm/uni/sscf_uni_lower.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-09-17 09:35:02 +0000
committerphk <phk@FreeBSD.org>1998-09-17 09:35:02 +0000
commit231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167 (patch)
tree28f16d9c354c723093e7fcf66c873381205685c1 /sys/netatm/uni/sscf_uni_lower.c
parent399a16928fecfe7a1b87962aa2146351791bb090 (diff)
downloadFreeBSD-src-231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167.zip
FreeBSD-src-231bd37d3c3215f2bf6cccc1a4f6d79ac7e1b167.tar.gz
Two patches from the HARP people:
Various Makefile related fixes. -Wformat fixes. Submitted by: Mike Spengler <mks@networkcs.com>
Diffstat (limited to 'sys/netatm/uni/sscf_uni_lower.c')
-rw-r--r--sys/netatm/uni/sscf_uni_lower.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netatm/uni/sscf_uni_lower.c b/sys/netatm/uni/sscf_uni_lower.c
index fe2d839..9639d96 100644
--- a/sys/netatm/uni/sscf_uni_lower.c
+++ b/sys/netatm/uni/sscf_uni_lower.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: sscf_uni_lower.c,v 1.6 1998/04/07 23:23:26 mks Exp $
+ * @(#) $Id: sscf_uni_lower.c,v 1.1 1998/09/15 08:23:06 phk Exp $
*
*/
@@ -36,7 +36,7 @@
*/
#ifndef lint
-static char *RCSid = "@(#) $Id: sscf_uni_lower.c,v 1.6 1998/04/07 23:23:26 mks Exp $";
+static char *RCSid = "@(#) $Id: sscf_uni_lower.c,v 1.1 1998/09/15 08:23:06 phk Exp $";
#endif
#include <netatm/kern_include.h>
@@ -92,8 +92,8 @@ sscf_uni_lower(cmd, tok, arg1, arg2)
enum sscop_vers vers;
int err;
- ATM_DEBUG5("sscf_uni_lower: cmd=0x%x, uvp=0x%x, ustate=%d, arg1=0x%x, arg2=0x%x\n",
- cmd, (int)uvp, uvp->uv_ustate, arg1, arg2);
+ ATM_DEBUG5("sscf_uni_lower: cmd=0x%x, uvp=%p, ustate=%d, arg1=0x%x, arg2=0x%x\n",
+ cmd, uvp, uvp->uv_ustate, arg1, arg2);
switch (cmd) {
@@ -370,8 +370,8 @@ sscf_uni_lower(cmd, tok, arg1, arg2)
break;
default:
- log(LOG_ERR, "sscf_uni_lower: unknown cmd 0x%x, uvp=0x%x\n",
- cmd, (int)uvp);
+ log(LOG_ERR, "sscf_uni_lower: unknown cmd 0x%x, uvp=%p\n",
+ cmd, uvp);
}
return;
OpenPOWER on IntegriCloud