diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-20 13:20:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-20 13:20:01 -0700 |
commit | db873896d168217e213902c7163fda7ee798781b (patch) | |
tree | d5bf83467cd473ab271a052f65e1095eb2bfbb87 /fs/befs | |
parent | 1eecd73cce4e11ba9d67ad767f92069cfba7b589 (diff) |
befs: fix up missed follow_link declaration change
We'd updated the prototype and the return value, but not the function
declaration itself.
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/linuxvfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index abf950e5b647..e0a6025f1d06 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c @@ -461,7 +461,7 @@ befs_destroy_inodecache(void) * The data stream become link name. Unless the LONG_SYMLINK * flag is set. */ -static int +static void * befs_follow_link(struct dentry *dentry, struct nameidata *nd) { befs_inode_info *befs_ino = BEFS_I(dentry->d_inode); |