Final 0.6.2 release; misc. bug fixes & Windows version
diff --git a/gptpart.cc b/gptpart.cc
index 29b2df9..40c426c 100644
--- a/gptpart.cc
+++ b/gptpart.cc
@@ -72,8 +72,6 @@
 // name *IF* the current name is the generic one for the current partition
 // type.
 void GPTPart::SetType(struct GUIDData t) {
-   int nameSame = 1, currentLength, i;
-
    if (GetName() == typeHelper.GUIDToName(partitionType)) {
       SetName(typeHelper.GUIDToName(t));
    } // if
@@ -157,7 +155,7 @@
       cout.width(14);
       cout << lastLBA  << "   ";
       cout << BytesToSI(blockSize * (lastLBA - firstLBA + 1)) << "   ";
-      for (i = 0; i < 9 - sizeInSI.length(); i++) cout << " ";
+      for (i = 0; i < 9 - (int) sizeInSI.length(); i++) cout << " ";
       cout.fill('0');
       cout.width(4);
       cout.setf(ios::uppercase);