Commit 9b556248 authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Correct two spelling errors "dealocate" to "deallocate" in mft.c.

From: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarAnton Altaparmakov <anton@tuxera.com>
parent 45d95bcd
/** /**
* mft.c - NTFS kernel mft record operations. Part of the Linux-NTFS project. * mft.c - NTFS kernel mft record operations. Part of the Linux-NTFS project.
* *
* Copyright (c) 2001-2011 Anton Altaparmakov and Tuxera Inc. * Copyright (c) 2001-2012 Anton Altaparmakov and Tuxera Inc.
* Copyright (c) 2002 Richard Russon * Copyright (c) 2002 Richard Russon
* *
* This program/include file is free software; you can redistribute it and/or * This program/include file is free software; you can redistribute it and/or
...@@ -1367,7 +1367,7 @@ static int ntfs_mft_bitmap_extend_allocation_nolock(ntfs_volume *vol) ...@@ -1367,7 +1367,7 @@ static int ntfs_mft_bitmap_extend_allocation_nolock(ntfs_volume *vol)
ntfs_error(vol->sb, "Failed to merge runlists for mft " ntfs_error(vol->sb, "Failed to merge runlists for mft "
"bitmap."); "bitmap.");
if (ntfs_cluster_free_from_rl(vol, rl2)) { if (ntfs_cluster_free_from_rl(vol, rl2)) {
ntfs_error(vol->sb, "Failed to dealocate " ntfs_error(vol->sb, "Failed to deallocate "
"allocated cluster.%s", es); "allocated cluster.%s", es);
NVolSetErrors(vol); NVolSetErrors(vol);
} }
...@@ -1805,7 +1805,7 @@ static int ntfs_mft_data_extend_allocation_nolock(ntfs_volume *vol) ...@@ -1805,7 +1805,7 @@ static int ntfs_mft_data_extend_allocation_nolock(ntfs_volume *vol)
ntfs_error(vol->sb, "Failed to merge runlists for mft data " ntfs_error(vol->sb, "Failed to merge runlists for mft data "
"attribute."); "attribute.");
if (ntfs_cluster_free_from_rl(vol, rl2)) { if (ntfs_cluster_free_from_rl(vol, rl2)) {
ntfs_error(vol->sb, "Failed to dealocate clusters " ntfs_error(vol->sb, "Failed to deallocate clusters "
"from the mft data attribute.%s", es); "from the mft data attribute.%s", es);
NVolSetErrors(vol); NVolSetErrors(vol);
} }
......
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