1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Snip redundant assignment.

Approved by:	scottl
MFC after:	2 weeks
Coverity ID:	3863
This commit is contained in:
Dag-Erling Smørgrav 2009-05-13 22:31:25 +00:00
parent a770e183dd
commit e872228f51
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192066

View File

@ -168,7 +168,7 @@ aic_action(struct cam_sim *sim, union ccb *ccb)
}
case XPT_SET_TRAN_SETTINGS:
{
struct ccb_trans_settings *cts = cts = &ccb->cts;
struct ccb_trans_settings *cts = &ccb->cts;
struct aic_tinfo *ti = &aic->tinfo[ccb->ccb_h.target_id];
struct ccb_trans_settings_scsi *scsi =
&cts->proto_specific.scsi;