summaryrefslogtreecommitdiffstats
path: root/sys/dev/aic7xxx
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>1998-09-16 03:26:10 +0000
committermjacob <mjacob@FreeBSD.org>1998-09-16 03:26:10 +0000
commitbc0ce9aa97b0ce6cc1e880473e1cdc736778198d (patch)
tree942097c5ca2d220cfcd65c896375a84224d9c765 /sys/dev/aic7xxx
parentf706ca01b7f767dba1bd3c3b1cc66f9ab11ac513 (diff)
downloadFreeBSD-src-bc0ce9aa97b0ce6cc1e880473e1cdc736778198d.zip
FreeBSD-src-bc0ce9aa97b0ce6cc1e880473e1cdc736778198d.tar.gz
Fix compile warnings.
Diffstat (limited to 'sys/dev/aic7xxx')
-rw-r--r--sys/dev/aic7xxx/aic7xxx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c
index 67366f4..1f21e0d 100644
--- a/sys/dev/aic7xxx/aic7xxx.c
+++ b/sys/dev/aic7xxx/aic7xxx.c
@@ -36,7 +36,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: aic7xxx.c,v 1.113 1997/04/05 21:41:13 gibbs Exp $
+ * $Id: aic7xxx.c,v 1.1 1998/09/15 07:24:16 gibbs Exp $
*/
/*
* A few notes on features of the driver.
@@ -1112,7 +1112,7 @@ ahc_handle_target_cmd(struct ahc_softc *ahc)
* to this accept tio.
*/
xpt_print_path(atio->ccb_h.path);
- printf("Incoming Command did not disconnect %x\n", lstate);
+ printf("Incoming Command did not disconnect %p\n", lstate);
ahc->pending_device = lstate;
}
xpt_done((union ccb*)atio);
@@ -1745,8 +1745,8 @@ ahc_handle_scsiint(struct ahc_softc *ahc, u_int8_t intstat)
case MSG_ABORT:
xpt_print_path(scb->ccb->ccb_h.path);
printf("SCB %d - Abort %s Completed.\n",
- tag == SCB_LIST_NULL ? "" : "Tag",
- scb->hscb->tag);
+ scb->hscb->tag, tag == SCB_LIST_NULL ?
+ "" : "Tag");
if ((scb->flags & SCB_RECOVERY_SCB) != 0) {
ahc_set_ccb_status(scb->ccb,
CAM_REQ_ABORTED);
OpenPOWER on IntegriCloud