Skip to content

Commit

Permalink
NLM: Fix a bogus 'return' in nlmclnt_rpc_release
Browse files Browse the repository at this point in the history
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Trond Myklebust authored and Trond Myklebust committed Jan 30, 2008
1 parent 883bb16 commit 65fdf7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/lockd/clntproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 65fdf7d

Please sign in to comment.