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.8.0_pre1^2~4301 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=336256c7a0e7d54495a070895c9d8c2057168839;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. Change-Id: Icdc19de48747fdfbd3349b2ef0c2b51d5a369550 Reviewed-on: http://gerrit.openafs.org/3636 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/afs/LINUX/osi_vnodeops.c b/src/afs/LINUX/osi_vnodeops.c index 45098b6ec..dd330e24e 100644 --- a/src/afs/LINUX/osi_vnodeops.c +++ b/src/afs/LINUX/osi_vnodeops.c @@ -1391,7 +1391,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);