svn commit: r367937 - head/sys/dev/isp

Alexander Motin mav at FreeBSD.org
Sun Nov 22 16:13:10 UTC 2020


Author: mav
Date: Sun Nov 22 16:13:09 2020
New Revision: 367937
URL: https://svnweb.freebsd.org/changeset/base/367937

Log:
  Fix debug build after 367926.

Modified:
  head/sys/dev/isp/isp_freebsd.c

Modified: head/sys/dev/isp/isp_freebsd.c
==============================================================================
--- head/sys/dev/isp/isp_freebsd.c	Sun Nov 22 13:39:21 2020	(r367936)
+++ head/sys/dev/isp/isp_freebsd.c	Sun Nov 22 16:13:09 2020	(r367937)
@@ -1480,7 +1480,7 @@ isp_handle_platform_atio7(ispsoftc_t *isp, at7_entry_t
 	xpt_done((union ccb *)atiop);
 	return;
 noresrc:
-	KASSERT(atp == NULL, ("%s: atp is not NULL on noresrc!\n"));
+	KASSERT(atp == NULL, ("%s: atp is not NULL on noresrc!\n", __func__));
 	ntp = isp_get_ntpd(isp, chan);
 	if (ntp == NULL) {
 		isp_endcmd(isp, aep, nphdl, chan, SCSI_STATUS_BUSY, 0);


More information about the svn-src-all mailing list