dect
/
linux-2.6
Archived
13
0
Fork 0

NLM: Fix a bogus 'return' in nlmclnt_rpc_release

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Trond Myklebust 2008-01-11 17:41:29 -05:00
parent 883bb163f8
commit 65fdf7d264
1 changed files with 1 additions and 1 deletions

View File

@ -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)