summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/scsipi/st.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/scsipi/st.c b/sys/dev/scsipi/st.c
index 49854c716eb..7cc51ad10a9 100644
--- a/sys/dev/scsipi/st.c
+++ b/sys/dev/scsipi/st.c
@@ -1,4 +1,4 @@
-/* $NetBSD: st.c,v 1.236 2019/02/12 13:43:40 kardel Exp $ */
+/* $NetBSD: st.c,v 1.237 2019/02/23 11:57:41 kamil Exp $ */
/*-
* Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
@@ -50,7 +50,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.236 2019/02/12 13:43:40 kardel Exp $");
+__KERNEL_RCSID(0, "$NetBSD: st.c,v 1.237 2019/02/23 11:57:41 kamil Exp $");
#ifdef _KERNEL_OPT
#include "opt_scsi.h"
@@ -1114,7 +1114,7 @@ ststrategy(struct buf *bp)
/* If offset is negative, error */
if (bp->b_blkno < 0) {
SC_DEBUG(periph, SCSIPI_DB3,
- ("EINVAL: ststrategy negative blockcount %ld\n", bp->b_blkno));
+ ("EINVAL: ststrategy negative blockcount %" PRId64 "\n", bp->b_blkno));
bp->b_error = EINVAL;
goto abort;
}