diff options
author | mjacob <mjacob@FreeBSD.org> | 1998-09-15 22:44:51 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 1998-09-15 22:44:51 +0000 |
commit | ee0c7c1d4fae807a58d7e3fa1b36a63b87133c44 (patch) | |
tree | 2dbff14d356fe77dccf5eb6e1515496d2765fea8 /sys/dev/isp/isp.c | |
parent | 728e48e76ebaf5bc5f6778c3113422a21bd1e201 (diff) | |
download | FreeBSD-src-ee0c7c1d4fae807a58d7e3fa1b36a63b87133c44.zip FreeBSD-src-ee0c7c1d4fae807a58d7e3fa1b36a63b87133c44.tar.gz |
fix reported compile error flying blind- I do not have the new compiler yet
Diffstat (limited to 'sys/dev/isp/isp.c')
-rw-r--r-- | sys/dev/isp/isp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 86fc8f6..dcfeb5e 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -1,4 +1,4 @@ -/* $Id: isp.c,v 1.19 1998/09/14 23:23:47 mjacob Exp $ */ +/* $Id: isp.c,v 1.2 1998/09/15 08:42:55 gibbs Exp $ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. @@ -1323,7 +1323,7 @@ isp_intr(arg) PRINTF(" BUT NOT SET"); } } - PRINTF(" XS_ERR=0x%x\n", XS_ERR(xs)); + PRINTF(" XS_ERR=0x%x\n", (unsigned int) XS_ERR(xs)); } ISP_WRITE(isp, INMAILBOX5, optr); |