mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
size_t is not a struct (fix mislabelling in a comment).
This commit is contained in:
parent
945a11211b
commit
85bba62925
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104346
2 changed files with 2 additions and 2 deletions
|
@ -1522,7 +1522,7 @@ vop_getextattr {
|
|||
IN int a_attrnamespace;
|
||||
IN const char *a_name;
|
||||
INOUT struct uio *a_uio;
|
||||
OUT struct size_t *a_size;
|
||||
OUT size_t *a_size;
|
||||
IN struct ucred *a_cred;
|
||||
IN struct thread *a_td;
|
||||
};
|
||||
|
|
|
@ -796,7 +796,7 @@ vop_getextattr {
|
|||
IN int a_attrnamespace;
|
||||
IN const char *a_name;
|
||||
INOUT struct uio *a_uio;
|
||||
OUT struct size_t *a_size;
|
||||
OUT size_t *a_size;
|
||||
IN struct ucred *a_cred;
|
||||
IN struct thread *a_td;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue