summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Larsson <catacombae@gmail.com>2021-06-08 15:49:03 +0300
committerErik Larsson <catacombae@gmail.com>2021-06-08 15:49:03 +0300
commit2a15a246a1d416b17f1b958cc3a9e3e21ee5b839 (patch)
tree85401dd70a83fdfeb7f80e563e7e74ec5e3bf1d6
parentbc067e719733e0876f673685687eafaae16825db (diff)
downloadsgdisk-2a15a246a1d416b17f1b958cc3a9e3e21ee5b839.tar.gz
gptpart.cc: Minor fix to end comment of GPTPart::ReversePartBytes(void).
The end comment was confusingly saying ReverseBytes instead of ReversePartBytes.
-rw-r--r--gptpart.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gptpart.cc b/gptpart.cc
index b268cf0..81bbcf0 100644
--- a/gptpart.cc
+++ b/gptpart.cc
@@ -422,7 +422,7 @@ void GPTPart::ReversePartBytes(void) {
ReverseBytes(&attributes, 8);
for (i = 0; i < NAME_SIZE; i ++ )
ReverseBytes(name + i, 2);
-} // GPTPart::ReverseBytes()
+} // GPTPart::ReversePartBytes()
/****************************************
* Functions requiring user interaction *