From c3227b6233665c372bf0ace3317c0ab1334a547e Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Fri, 13 Mar 2009 22:01:36 -0700 Subject: s3: Don't return in a void funtion --- source3/modules/vfs_default.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') 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. */ -- cgit