mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-01 17:00:36 +00:00
Fix what seems to be an obvious typo preventing the body of the
if statement to ever be executed. Approved by: ed (mentor)
This commit is contained in:
parent
fe7bc8cbab
commit
03cd51df00
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194687
@ -443,7 +443,7 @@ fw_write_async(struct fw_drv1 *d, struct uio *uio, int ioflag)
|
||||
xfer->send.pay_len = uio->uio_resid;
|
||||
if (uio->uio_resid > 0) {
|
||||
if ((err = uiomove((caddr_t)&xfer->send.payload[0],
|
||||
uio->uio_resid, uio)));
|
||||
uio->uio_resid, uio)))
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user