Fixed FSSpec->pathname code to add colon if the fsspec points to a disk.
diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c
index c1d1e3e..b395f9a 100644
--- a/Mac/Python/macgetargv.c
+++ b/Mac/Python/macgetargv.c
@@ -139,6 +139,12 @@
 	plen = fss_current.name[0];
 	memcpy(buf, &fss_current.name[1], plen);
 	buf[plen] = 0;
+	/* Special case for disk names */
+	if ( fss_current.parID <= 1 ) {
+		buf[plen++] = ':';
+		buf[plen] = 0;
+		return 0;
+	}
 	while (fss_current.parID > 1) {
     		/* Get parent folder name */
                 if (err = get_folder_parent(&fss_current, &fss_parent))