Date: Sun, 22 Nov 2020 16:13:09 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r367937 - head/sys/dev/isp Message-ID: <202011221613.0AMGD9CU068911@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011221613.0AMGD9CU068911>