Remove a superfluous newline in a string (isp_prt adds this).

Fix a missed conversion of 32 to 16 bit handles.
This commit is contained in:
Matt Jacob 2001-03-04 18:41:23 +00:00
parent 12fd045a2c
commit 3bfa867765
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73529

View File

@ -3245,7 +3245,7 @@ isp_parse_async(isp, mbox)
case ASYNC_TIMEOUT_RESET:
isp_prt(isp, ISP_LOGWARN,
"timeout initiated SCSI bus reset of bus %d\n", bus);
"timeout initiated SCSI bus reset of bus %d", bus);
isp->isp_sendmarker |= (1 << bus);
#ifdef ISP_TARGET_MODE
isp_target_async(isp, bus, mbox);
@ -4884,7 +4884,7 @@ isp_reinit(isp)
struct ispsoftc *isp;
{
XS_T *xs;
u_int32_t handle;
u_int16_t handle;
isp_reset(isp);
if (isp->isp_state != ISP_RESETSTATE) {