summaryrefslogtreecommitdiff
path: root/gptpart.cc
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2010-01-12 18:18:36 -0500
committersrs5694 <srs5694@users.sourceforge.net>2010-01-12 18:18:36 -0500
commitba00fed2efd6c0cba60da9afb0ce3dff84fc69f9 (patch)
tree195d68fe263771efd95eccf4035750efbd975d9b /gptpart.cc
parent73ba4794a4b05c4bf4ff191bff2e023e706744fb (diff)
downloadsgdisk-ba00fed2efd6c0cba60da9afb0ce3dff84fc69f9.tar.gz
sgdisk program, misc. bug fixes
Diffstat (limited to 'gptpart.cc')
-rw-r--r--gptpart.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/gptpart.cc b/gptpart.cc
index fd24dfa..5ee7d5d 100644
--- a/gptpart.cc
+++ b/gptpart.cc
@@ -206,7 +206,7 @@ void GPTPart::ChangeType(void) {
else // user wants to enter the GUID directly, so do that
newType = GetGUID();
partitionType = newType;
- printf("Changed system type of partition to '%s'\n",
+ printf("Changed type of partition to '%s'\n",
typeHelper.GUIDToName(partitionType, typeName));
} // GPTPart::ChangeType()
@@ -278,4 +278,3 @@ void QuickSortGPT(GPTPart* partitions, int start, int finish) {
if (start < right) QuickSortGPT(partitions, start, right);
if (finish > left) QuickSortGPT(partitions, left, finish);
} // QuickSortGPT()
-