Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/ntfsprogs
In directory delta357.server4you.de:/tmp/cvs-serv5681/ntfsprogs
Modified Files:
ntfsresize.c
Log Message:
Spelling fix.
Index: ntfsresize.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs/ntfsresize.c,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -p -r1.120 -r1.121
--- ntfsresize.c 18 Oct 2006 14:41:41 -0000 1.120
+++ ntfsresize.c 18 Oct 2006 14:43:04 -0000 1.121
@@ -801,11 +801,9 @@ static void build_lcn_usage_bitmap(ntfs_
lcn_length);
for (j = 0; j < lcn_length; j++) {
-
u64 k = (u64)lcn + j;
if (k >= (u64)vol->nr_clusters) {
-
long long outsiders = lcn_length - j;
fsck->outsider += outsiders;
@@ -821,7 +819,7 @@ static void build_lcn_usage_bitmap(ntfs_
if (ntfs_bit_get_and_set(lcn_bitmap->bm, k, 1)) {
if (++fsck->multi_ref <= 10 || opt.verbose)
printf("Cluster %lld is referenced "
- "multiply times!\n",
+ "multiple times!\n",
(long long)k);
continue;
}
|