From: Andrew Deason Date: Mon, 10 Jan 2011 18:11:22 +0000 (-0600) Subject: LINUX: afs_linux_put_link is void X-Git-Tag: upstream/1.6.1.pre1^2~59 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4190a3aad98457e317c14dcf455ed1b62e129042;p=packages%2Fo%2Fopenafs.git LINUX: afs_linux_put_link is void The put_link callback doesn't return a value, so declare it as such. Reviewed-on: http://gerrit.openafs.org/3636 Tested-by: BuildBot Reviewed-by: Derrick Brashear (cherry picked from commit 336256c7a0e7d54495a070895c9d8c2057168839) Change-Id: I5985316ea37f572039267ea117dfeae55ea96bc0 Reviewed-on: http://gerrit.openafs.org/6271 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c index d59d509f3..dd133d46c 100644 --- a/src/afs/LINUX/osi_vnodeops.c +++ b/src/afs/LINUX/osi_vnodeops.c @@ -1404,7 +1404,7 @@ static int afs_linux_follow_link(struct dentry *dentry, struct nameidata *nd) return 0; } -static int +static void afs_linux_put_link(struct dentry *dentry, struct nameidata *nd) { char *name = nd_get_link(nd);