aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/buslogic
diff options
context:
space:
mode:
authorJustin T. Gibbs <gibbs@FreeBSD.org>1998-09-17 00:08:29 +0000
committerJustin T. Gibbs <gibbs@FreeBSD.org>1998-09-17 00:08:29 +0000
commitc2921d36a902ece41eafbfb387f1766a17f75192 (patch)
tree83742ffff58222d0b464cb1062c09272f147151d /sys/dev/buslogic
parentdd9b6dde8905fd5798dde8784750c025f526c91e (diff)
Notes
Diffstat (limited to 'sys/dev/buslogic')
-rw-r--r--sys/dev/buslogic/bt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c
index 6f3b987358364..e07b03e0315f8 100644
--- a/sys/dev/buslogic/bt.c
+++ b/sys/dev/buslogic/bt.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: bt.c,v 1.1 1998/09/15 07:32:48 gibbs Exp $
+ * $Id: bt.c,v 1.2 1998/09/16 03:27:11 gibbs Exp $
*/
/*
@@ -1392,8 +1392,8 @@ btdone(struct bt_softc *bt, struct bt_ccb *bccb, bt_mbi_comp_code_t comp_code)
csio = &bccb->ccb->csio;
if ((bccb->flags & BCCB_ACTIVE) == 0) {
- printf("%s: btdone - Attempt to free non-active BCCB 0x%x\n",
- bt_name(bt), (intptr_t)bccb);
+ printf("%s: btdone - Attempt to free non-active BCCB %p\n",
+ bt_name(bt), (void *)bccb);
return;
}
@@ -2060,14 +2060,14 @@ bttimeout(void *arg)
ccb = bccb->ccb;
bt = (struct bt_softc *)ccb->ccb_h.ccb_bt_ptr;
xpt_print_path(ccb->ccb_h.path);
- printf("CCB 0x%x - timed out\n", (intptr_t)bccb);
+ printf("CCB %p - timed out\n", (void *)bccb);
s = splcam();
if ((bccb->flags & BCCB_ACTIVE) == 0) {
xpt_print_path(ccb->ccb_h.path);
- printf("CCB 0x%x - timed out CCB already completed\n",
- (intptr_t)bccb);
+ printf("CCB %p - timed out CCB already completed\n",
+ (void *)bccb);
splx(s);
return;
}