summaryrefslogtreecommitdiff
path: root/parttypes.cc
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2009-08-26 14:39:40 -0400
committersrs5694 <srs5694@users.sourceforge.net>2009-08-26 14:39:40 -0400
commit86dd784a0410a689a5423632b346eb398839ee2a (patch)
tree78acd44e588499866b2938b3a90f257f3facd09a /parttypes.cc
parent2a9f5da3c3c4ccccd291462bda9d2aefcd485ff8 (diff)
downloadsgdisk-86dd784a0410a689a5423632b346eb398839ee2a.tar.gz
Miscellaneous bug fixes to new big-endian code
Diffstat (limited to 'parttypes.cc')
-rw-r--r--parttypes.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/parttypes.cc b/parttypes.cc
index 3f81797..cb61621 100644
--- a/parttypes.cc
+++ b/parttypes.cc
@@ -300,7 +300,8 @@ struct GUIDData PartTypes::IDToGUID(uint16_t ID) {
} // while
if (!found) {
theGUID = IDToGUID(0x0700); // assign a default type code
- printf("Exact type match not found; assigning type code for 'Linux/Windows data'\n");
+ printf("Exact type match not found for type code %lx; assigning type code for\n'Linux/Windows data'\n",
+ ID);
} // if (!found)
return theGUID;
} // PartTypes::IDToGUID()