summaryrefslogtreecommitdiff
path: root/gpt.cc
diff options
context:
space:
mode:
authorRoderick W. Smith <rodsmith@rodsbooks.com>2013-07-06 22:52:58 -0400
committerRoderick W. Smith <rodsmith@rodsbooks.com>2013-07-06 22:52:58 -0400
commit1eea9b0b51367472ce12efb59b0018c0ac96a463 (patch)
tree88c2eacf1fbcb909a24b60fab44151ea137d5965 /gpt.cc
parentf5dfbfa418675ca862408e4fb2240b21dd07d558 (diff)
downloadsgdisk-1eea9b0b51367472ce12efb59b0018c0ac96a463.tar.gz
New partition type codes & "-a" option for cgdisk
Diffstat (limited to 'gpt.cc')
-rw-r--r--gpt.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/gpt.cc b/gpt.cc
index d692561..f571ad7 100644
--- a/gpt.cc
+++ b/gpt.cc
@@ -1429,12 +1429,14 @@ WhichToUse GPTData::UseWhichPartitions(void) {
if ((state == gpt_invalid) && ((mbrState == mbr) || (mbrState == hybrid))) {
cout << "\n***************************************************************\n"
- << "Found invalid GPT and valid MBR; converting MBR to GPT format.\n";
+ << "Found invalid GPT and valid MBR; converting MBR to GPT format\n"
+ << "in memory. ";
if (!justLooking) {
- cout << "\aTHIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if\n"
- << "you don't want to convert your MBR partitions to GPT format!\n";
+ cout << "\aTHIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by\n"
+ << "typing 'q' if you don't want to convert your MBR partitions\n"
+ << "to GPT format!";
} // if
- cout << "***************************************************************\n\n";
+ cout << "\n***************************************************************\n\n";
which = use_mbr;
} // if