diff --git a/ntfsprogs/ntfsresize.c b/ntfsprogs/ntfsresize.c index fa5fc437..f1606eea 100644 --- a/ntfsprogs/ntfsresize.c +++ b/ntfsprogs/ntfsresize.c @@ -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); }