diff options
Diffstat (limited to 'examples/VFS/skel_opaque.c')
-rw-r--r-- | examples/VFS/skel_opaque.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 5d05be9aab..54f7ce8cf2 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -196,9 +196,10 @@ static int skel_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname) return vfswrap_lstat(NULL, smb_fname); } -static int skel_unlink(vfs_handle_struct *handle, const char *path) +static int skel_unlink(vfs_handle_struct *handle, + const struct smb_filename *smb_fname) { - return vfswrap_unlink(NULL, path); + return vfswrap_unlink(NULL, smb_fname); } static int skel_chmod(vfs_handle_struct *handle, const char *path, mode_t mode) |