Print this page
OS-1571 Placate gcc -Wparentheses
Reviewed by: Robert Mustacchi <rm@joyent.com>
*** 2665,2677 ****
* by the same amount. But we want uiop->uio_offset to change
* in increments of LXPR_SDSIZE, which is different from the
* number of bytes being returned to the user. So we set
* uiop->uio_offset separately, ignoring what uiomove() does.
*/
! if (error = uiomove((caddr_t)dirent, reclen, UIO_READ, uiop)) {
return (error);
- }
uiop->uio_offset = uoffset + LXPR_SDSIZE;
}
/* Have run out of space, but could have just done last table entry */
--- 2665,2677 ----
* by the same amount. But we want uiop->uio_offset to change
* in increments of LXPR_SDSIZE, which is different from the
* number of bytes being returned to the user. So we set
* uiop->uio_offset separately, ignoring what uiomove() does.
*/
! if ((error = uiomove((caddr_t)dirent, reclen, UIO_READ,
! uiop)) != 0)
return (error);
uiop->uio_offset = uoffset + LXPR_SDSIZE;
}
/* Have run out of space, but could have just done last table entry */
*** 2803,2813 ****
* in increments of LXPR_SDSIZE, which is different from the
* number of bytes being returned to the user. So we set
* uiop->uio_offset separately, in the increment of this for
* the loop, ignoring what uiomove() does.
*/
! if (error = uiomove((caddr_t)dirent, reclen, UIO_READ, uiop))
return (error);
next:
uiop->uio_offset = uoffset + LXPR_SDSIZE;
}
--- 2803,2814 ----
* in increments of LXPR_SDSIZE, which is different from the
* number of bytes being returned to the user. So we set
* uiop->uio_offset separately, in the increment of this for
* the loop, ignoring what uiomove() does.
*/
! if ((error = uiomove((caddr_t)dirent, reclen, UIO_READ,
! uiop)) != 0)
return (error);
next:
uiop->uio_offset = uoffset + LXPR_SDSIZE;
}
*** 2935,2945 ****
if (uresid == oresid)
error = EINVAL;
goto out;
}
! if (error = uiomove((caddr_t)dirent, reclen, UIO_READ, uiop))
goto out;
}
if (eofp != NULL) {
*eofp =
--- 2936,2947 ----
if (uresid == oresid)
error = EINVAL;
goto out;
}
! if ((error = uiomove((caddr_t)dirent, reclen, UIO_READ,
! uiop)) != 0)
goto out;
}
if (eofp != NULL) {
*eofp =