Commit 5390e71a authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Fix fs/ntfs/debug.c::ntfs_debug_dump_runlist() for the previous

removal of LCN_EINVAL which was not used in the kernel NTFS driver.
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent 0c325668
......@@ -155,7 +155,7 @@ void ntfs_debug_dump_runlist(const runlist_element *rl)
int index = -lcn - 1;
if (index > -LCN_ENOENT - 1)
index = 4;
index = 3;
printk(KERN_DEBUG "%-16Lx %s %-16Lx%s\n",
(rl + i)->vcn, lcn_str[index],
(rl + i)->length, (rl + i)->length ?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment