fs/ntfs3: Fix wrong error message $Logfile -> $UpCase
authorKari Argillander <kari.argillander@gmail.com>
Thu, 9 Sep 2021 18:09:32 +0000 (21:09 +0300)
committerKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
Mon, 20 Sep 2021 15:52:56 +0000 (18:52 +0300)
Fix wrong error message $Logfile -> $UpCase. Probably copy paste.

Fixes: 203c2b3a406a ("fs/ntfs3: Add initialization of super block")
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
fs/ntfs3/super.c

index acfa00a..1e01184 100644 (file)
@@ -1201,7 +1201,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
        inode = ntfs_iget5(sb, &ref, &NAME_UPCASE);
        if (IS_ERR(inode)) {
                err = PTR_ERR(inode);
-               ntfs_err(sb, "Failed to load \x24LogFile.");
+               ntfs_err(sb, "Failed to load $UpCase.");
                inode = NULL;
                goto out;
        }