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 <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Andrew Deason 2011-01-10 12:11:22 -06:00 committed by Derrick Brashear
parent 8d157961e9
commit 336256c7a0

View File

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