summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-03-13 22:01:36 -0700
committerKarolin Seeger <kseeger@samba.org>2009-04-15 09:06:17 +0200
commit237f81b86b3d62b47668eb4a3e11bb7f4738f2f3 (patch)
treebceeecffbceace8d1f60d6ef2dca83f595749c28 /source3/modules
parent485c0baefeb29ce3695a3b7ef55826d302eb639d (diff)
downloadsamba-237f81b86b3d62b47668eb4a3e11bb7f4738f2f3.tar.gz
s3: Don't return in a void funtion
(cherry picked from commit a6b0a884d9ef247470e6ec54ce8fab3a77c07864)
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/vfs_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index a4973df2995..bb01f985881 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. */