Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=65fdf7d264213a9a8de44f9a20e002a26c267a76
Commit:     65fdf7d264213a9a8de44f9a20e002a26c267a76
Parent:     883bb163f84e0a54b29846c61621f52db3f27393
Author:     Trond Myklebust <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 11 17:41:29 2008 -0500
Committer:  Trond Myklebust <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 02:06:08 2008 -0500

    NLM: Fix a bogus 'return' in nlmclnt_rpc_release
    
    Signed-off-by: Trond Myklebust <[EMAIL PROTECTED]>
---
 fs/lockd/clntproc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/lockd/clntproc.c b/fs/lockd/clntproc.c
index b1a4dba..b6b74a6 100644
--- a/fs/lockd/clntproc.c
+++ b/fs/lockd/clntproc.c
@@ -244,7 +244,7 @@ void nlm_release_call(struct nlm_rqst *call)
 
 static void nlmclnt_rpc_release(void *data)
 {
-       return nlm_release_call(data);
+       nlm_release_call(data);
 }
 
 static int nlm_wait_on_grace(wait_queue_head_t *queue)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to