gptpart.cc: Minor fix to end comment of GPTPart::ReversePartBytes(void).

The end comment was confusingly saying ReverseBytes instead of
ReversePartBytes.
This commit is contained in:
Erik Larsson
2021-06-08 15:49:03 +03:00
parent bc067e7197
commit 2a15a246a1

View File

@@ -422,7 +422,7 @@ void GPTPart::ReversePartBytes(void) {
ReverseBytes(&attributes, 8); ReverseBytes(&attributes, 8);
for (i = 0; i < NAME_SIZE; i ++ ) for (i = 0; i < NAME_SIZE; i ++ )
ReverseBytes(name + i, 2); ReverseBytes(name + i, 2);
} // GPTPart::ReverseBytes() } // GPTPart::ReversePartBytes()
/**************************************** /****************************************
* Functions requiring user interaction * * Functions requiring user interaction *