diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1998-09-17 00:08:29 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1998-09-17 00:08:29 +0000 |
| commit | c2921d36a902ece41eafbfb387f1766a17f75192 (patch) | |
| tree | 83742ffff58222d0b464cb1062c09272f147151d /sys/dev/aha | |
| parent | dd9b6dde8905fd5798dde8784750c025f526c91e (diff) | |
Notes
Diffstat (limited to 'sys/dev/aha')
| -rw-r--r-- | sys/dev/aha/aha.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/aha/aha.c b/sys/dev/aha/aha.c index 10fc52f69a2c..cad192af3ea3 100644 --- a/sys/dev/aha/aha.c +++ b/sys/dev/aha/aha.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aha.c,v 1.1 1998/09/15 07:39:52 gibbs Exp $ + * $Id: aha.c,v 1.2 1998/09/16 03:27:12 gibbs Exp $ */ #include <sys/param.h> @@ -1139,8 +1139,8 @@ ahadone(struct aha_softc *aha, struct aha_ccb *bccb, aha_mbi_comp_code_t comp_co csio = &bccb->ccb->csio; if ((bccb->flags & BCCB_ACTIVE) == 0) { - printf("%s: ahadone - Attempt to free non-active BCCB 0x%x\n", - aha_name(aha), (intptr_t)bccb); + printf("%s: ahadone - Attempt to free non-active BCCB %p\n", + aha_name(aha), (void *)bccb); return; } @@ -1679,14 +1679,14 @@ ahatimeout(void *arg) ccb = bccb->ccb; aha = (struct aha_softc *)ccb->ccb_h.ccb_aha_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; } |
