mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
The fget() function now takes pointer to cap_rights_t, so change 0 to NULL.
This commit is contained in:
parent
ab568de789
commit
96a62209fb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255241
@ -2050,7 +2050,7 @@ sys_aio_cancel(struct thread *td, struct aio_cancel_args *uap)
|
||||
struct vnode *vp;
|
||||
|
||||
/* Lookup file object. */
|
||||
error = fget(td, uap->fd, 0, &fp);
|
||||
error = fget(td, uap->fd, NULL, &fp);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user