Remove a stray 'const' that slept into extattr_set_vp(), and could

result in compiler warnings.
This commit is contained in:
Robert Watson 2002-02-10 05:31:55 +00:00
parent fbf6f7f1d6
commit 56e04d01c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90455
2 changed files with 2 additions and 2 deletions

View File

@ -4005,7 +4005,7 @@ extattrctl(td, uap)
*/
static int
extattr_set_vp(struct vnode *vp, int attrnamespace, const char *attrname,
const void *data, size_t nbytes, struct thread *td)
void *data, size_t nbytes, struct thread *td)
{
struct mount *mp;
struct uio auio;

View File

@ -4005,7 +4005,7 @@ extattrctl(td, uap)
*/
static int
extattr_set_vp(struct vnode *vp, int attrnamespace, const char *attrname,
const void *data, size_t nbytes, struct thread *td)
void *data, size_t nbytes, struct thread *td)
{
struct mount *mp;
struct uio auio;