From ba00fed2efd6c0cba60da9afb0ce3dff84fc69f9 Mon Sep 17 00:00:00 2001 From: srs5694 Date: Tue, 12 Jan 2010 18:18:36 -0500 Subject: sgdisk program, misc. bug fixes --- gptpart.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gptpart.cc') 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() - -- cgit v1.2.1