Skip to content

Commit

Permalink
[JFFS2] Fix jffs2_follow_link() typo
Browse files Browse the repository at this point in the history
typo fix: noticed this typo while reading the patch
"jffs2: fix symlink error handling"

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
Qi Yong authored and David Woodhouse committed Oct 21, 2006
1 parent c7438d0 commit c7cf0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/jffs2/symlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
*/

if (!p) {
printk(KERN_ERR "jffs2_follow_link(): can't find symlink taerget\n");
printk(KERN_ERR "jffs2_follow_link(): can't find symlink target\n");
p = ERR_PTR(-EIO);
}
D1(printk(KERN_DEBUG "jffs2_follow_link(): target path is '%s'\n", (char *) f->target));
Expand Down

0 comments on commit c7cf0c6

Please sign in to comment.