[JFFS2] Fix jffs2_follow_link() typo
authorQi Yong <qiyong@fc-cn.com>
Mon, 16 Oct 2006 11:42:23 +0000 (19:42 +0800)
committerDavid Woodhouse <dwmw2@infradead.org>
Sat, 21 Oct 2006 15:24:08 +0000 (16:24 +0100)
typo fix: noticed this typo while reading the patch
"jffs2: fix symlink error handling"

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
fs/jffs2/symlink.c

index fc211b6..b90d5aa 100644 (file)
@@ -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));