diff options
author | Tim Prouty <tprouty@samba.org> | 2009-03-13 22:01:36 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-03-13 22:02:53 -0700 |
commit | c3227b6233665c372bf0ace3317c0ab1334a547e (patch) | |
tree | 18474c7c2f266f343c74af91d9e84075a7a8e20b | |
parent | f48a345e4a215173ad9e7d2777bacc0decb2bcc7 (diff) | |
download | samba-c3227b6233665c372bf0ace3317c0ab1334a547e.tar.gz samba-c3227b6233665c372bf0ace3317c0ab1334a547e.tar.bz2 samba-c3227b6233665c372bf0ace3317c0ab1334a547e.zip |
s3: Don't return in a void funtion
-rw-r--r-- | source3/modules/vfs_default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index a4973df299..bb01f98588 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -1174,7 +1174,7 @@ static void vfswrap_strict_unlock(struct vfs_handle_struct *handle, SMB_ASSERT(plock->lock_type == READ_LOCK || plock->lock_type == WRITE_LOCK); - return strict_unlock_default(fsp, plock); + strict_unlock_default(fsp, plock); } /* NT ACL operations. */ |