diff options
author | mjacob <mjacob@FreeBSD.org> | 1999-02-05 08:49:34 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 1999-02-05 08:49:34 +0000 |
commit | 966dc5f24a232414e1f1c8cd4c0a45f3f2f942b7 (patch) | |
tree | 98c88918549154762f5f9a2abf851d91769afd21 /sys/cam/scsi | |
parent | 53c7300e25b298d95334fdedf184f071b0b9c28d (diff) | |
download | FreeBSD-src-966dc5f24a232414e1f1c8cd4c0a45f3f2f942b7.zip FreeBSD-src-966dc5f24a232414e1f1c8cd4c0a45f3f2f942b7.tar.gz |
quiet the alpha compiler
Diffstat (limited to 'sys/cam/scsi')
-rw-r--r-- | sys/cam/scsi/scsi_sa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/cam/scsi/scsi_sa.c b/sys/cam/scsi/scsi_sa.c index 9259714..7b2ca1c 100644 --- a/sys/cam/scsi/scsi_sa.c +++ b/sys/cam/scsi/scsi_sa.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_sa.c,v 1.16 1999/01/16 19:20:30 mjacob Exp $ + * $Id: scsi_sa.c,v 1.17 1999/02/05 07:32:52 mjacob Exp $ */ #include <sys/param.h> @@ -1227,8 +1227,8 @@ saregister(struct cam_periph *periph, void *arg) ((struct sa_quirk_entry *)match)->prefblk; #ifdef CAMDEBUG xpt_print_path(periph->path); - printf("found quirk entry %d\n", - ((struct sa_quirk_entry *) match) - sa_quirk_table); + printf("found quirk entry %d\n", (int) + (((struct sa_quirk_entry *) match) - sa_quirk_table)); #endif } else softc->quirks = SA_QUIRK_NONE; |