NFS: Fix prototype of unbind method. The function prototype was not updated for NFS after a recent change to the file system interface. From Manuel Stühn.

This commit is contained in:
Manuel Stühn 2015-06-26 07:06:53 -06:00 committed by Gregory Nutt
parent 003bacdf91
commit f9c0168aba

View File

@ -144,7 +144,7 @@ static void nfs_decode_args(FAR struct nfs_mount_parameters *nprmt,
FAR struct nfs_args *argp); FAR struct nfs_args *argp);
static int nfs_bind(FAR struct inode *blkdriver, const void *data, static int nfs_bind(FAR struct inode *blkdriver, const void *data,
void **handle); void **handle);
static int nfs_unbind(void *handle, FAR struct inode **blkdriver. static int nfs_unbind(FAR void *handle, FAR struct inode **blkdriver,
unsigned int flags); unsigned int flags);
static int nfs_statfs(struct inode *mountpt, struct statfs *buf); static int nfs_statfs(struct inode *mountpt, struct statfs *buf);
static int nfs_remove(struct inode *mountpt, const char *relpath); static int nfs_remove(struct inode *mountpt, const char *relpath);
@ -1873,7 +1873,7 @@ bad:
* *
****************************************************************************/ ****************************************************************************/
int nfs_unbind(FAR void *handle, FAR struct inode **blkdriver, static int nfs_unbind(FAR void *handle, FAR struct inode **blkdriver,
unsigned int flags) unsigned int flags)
{ {
FAR struct nfsmount *nmp = (FAR struct nfsmount *)handle; FAR struct nfsmount *nmp = (FAR struct nfsmount *)handle;