summaryrefslogtreecommitdiff
path: root/gptpart.h
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.h
parent73ba4794a4b05c4bf4ff191bff2e023e706744fb (diff)
downloadsgdisk-ba00fed2efd6c0cba60da9afb0ce3dff84fc69f9.tar.gz
sgdisk program, misc. bug fixes
Diffstat (limited to 'gptpart.h')
-rw-r--r--gptpart.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gptpart.h b/gptpart.h
index 8d396df..b1a580f 100644
--- a/gptpart.h
+++ b/gptpart.h
@@ -31,13 +31,13 @@ using namespace std;
class GPTPart {
protected:
- // Caution: The non-static data in GUIDPart is precisely the right size
+ // Caution: The non-static data in GPTPart is precisely the right size
// to enable easy loading of the data directly from disk. If any
// non-static variables are added to the below, the data size will
// change and the program will stop working. This can be corrected by
// adjusting the data-load operation in GPTData::LoadMainTable() and
- // GPTData::LoadSecondTableAsMain() and then removing the GUIDPart
- // size check in SizesOK().
+ // GPTData::LoadSecondTableAsMain() and then removing the GPTPart
+ // size check in SizesOK() (in gpt.cc file).
struct GUIDData partitionType;
struct GUIDData uniqueGUID;
uint64_t firstLBA;