Module Name: src Committed By: maxv Date: Fri Sep 20 09:07:35 UTC 2019
Modified Files: src/sys/dev/ic: isp_netbsd.c Log Message: Fix argument. Found by the lgtm bot. To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 src/sys/dev/ic/isp_netbsd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/ic/isp_netbsd.c diff -u src/sys/dev/ic/isp_netbsd.c:1.91 src/sys/dev/ic/isp_netbsd.c:1.92 --- src/sys/dev/ic/isp_netbsd.c:1.91 Sun Feb 3 03:19:27 2019 +++ src/sys/dev/ic/isp_netbsd.c Fri Sep 20 09:07:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: isp_netbsd.c,v 1.91 2019/02/03 03:19:27 mrg Exp $ */ +/* $NetBSD: isp_netbsd.c,v 1.92 2019/09/20 09:07:35 maxv Exp $ */ /* * Platform (NetBSD) dependent common attachment code for Qlogic adapters. */ @@ -33,7 +33,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: isp_netbsd.c,v 1.91 2019/02/03 03:19:27 mrg Exp $"); +__KERNEL_RCSID(0, "$NetBSD: isp_netbsd.c,v 1.92 2019/09/20 09:07:35 maxv Exp $"); #include <dev/ic/isp_netbsd.h> #include <dev/ic/isp_ioctl.h> @@ -609,7 +609,7 @@ ispcmd(struct ispsoftc *isp, XS_T *xs) } if (isp->isp_osinfo.blocked) { isp_prt(isp, ISP_LOGWARN, - "I/O while blocked with retries %d", xs, xs->xs_retries); + "I/O while blocked with retries %d", xs->xs_retries); if (xs->xs_retries) { xs->error = XS_REQUEUE; xs->xs_retries--;