edge.strict_endians
szaka 2006-02-04 13:39:19 +00:00
parent c47236819d
commit 9d51139377
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ static const char *unclean_journal_msg =
"using this software! Note, if you have run chkdsk previously then boot\n"
"Windows again which will automatically initialize the journal correctly.\n";
static const char *opened_volue_msg =
static const char *opened_volume_msg =
"This software has detected that the NTFS volume is already opened by another\n"
"software thus it refuses to progress to preserve data consistency.\n";
@ -2265,7 +2265,7 @@ static ntfs_volume *mount_volume(void)
else if (err == EOPNOTSUPP)
printf("%s", unclean_journal_msg);
else if (err == EBUSY)
printf("%s", opened_volue_msg);
printf("%s", opened_volume_msg);
exit(1);
}