Changed "Creating new GPT entries" message to "Creating new GPT

entries in memory" because the latter is clearer and more precise.
This commit is contained in:
Rod Smith
2018-04-29 16:23:49 -04:00
parent 643126a53c
commit 5e490b279f
2 changed files with 11 additions and 1 deletions

10
NEWS
View File

@@ -1,3 +1,13 @@
1.0.4 (?/??/2018):
------------------
- Added type code for Apple APFS (7C3457EF-0000-11AA-AA11-00306543ECAC,
0xaf0a).
- Changed "Creating new GPT entries" message to read "Creating new
GPT entries in memory" because the latter is clearer, particularly when
using sgdisk with a non-destructive option, like "-p".
1.0.3 (7/27/2017):
------------------

2
gpt.cc
View File

@@ -1593,7 +1593,7 @@ WhichToUse GPTData::UseWhichPartitions(void) {
} // if GPT corrupt
if (which == use_new)
cout << "Creating new GPT entries.\n";
cout << "Creating new GPT entries in memory.\n";
return which;
} // UseWhichPartitions()