summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-03-13 22:01:36 -0700
committerTim Prouty <tprouty@samba.org>2009-03-13 22:02:53 -0700
commitc3227b6233665c372bf0ace3317c0ab1334a547e (patch)
tree18474c7c2f266f343c74af91d9e84075a7a8e20b /source3
parentf48a345e4a215173ad9e7d2777bacc0decb2bcc7 (diff)
downloadsamba-c3227b6233665c372bf0ace3317c0ab1334a547e.tar.gz
samba-c3227b6233665c372bf0ace3317c0ab1334a547e.tar.bz2
samba-c3227b6233665c372bf0ace3317c0ab1334a547e.zip
s3: Don't return in a void funtion
Diffstat (limited to 'source3')
-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 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. */