mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue