summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs/smbfs_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/smbfs/smbfs_io.c')
-rw-r--r--sys/fs/smbfs/smbfs_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/smbfs/smbfs_io.c b/sys/fs/smbfs/smbfs_io.c
index 9aa4224..11c1e3c 100644
--- a/sys/fs/smbfs/smbfs_io.c
+++ b/sys/fs/smbfs/smbfs_io.c
@@ -109,7 +109,7 @@ smbfs_readvdir(struct vnode *vp, struct uio *uio, struct ucred *cred)
de.d_name[1] = '.';
de.d_name[offset + 1] = '\0';
de.d_type = DT_DIR;
- error = uiomove((caddr_t)&de, DE_SIZE, uio);
+ error = uiomove(&de, DE_SIZE, uio);
if (error)
return error;
offset++;
@@ -165,7 +165,7 @@ smbfs_readvdir(struct vnode *vp, struct uio *uio, struct ucred *cred)
vput(newvp);
}
}
- error = uiomove((caddr_t)&de, DE_SIZE, uio);
+ error = uiomove(&de, DE_SIZE, uio);
if (error)
break;
}
OpenPOWER on IntegriCloud