reformat MachineInfo.h

This commit is contained in:
Dennis Luxen
2014-05-07 11:38:22 +02:00
parent fc6017c0dd
commit c2b7336817
2 changed files with 16 additions and 12 deletions
+1 -1
View File
@@ -406,7 +406,7 @@ inline void PBFParser::loadBlock(_ThreadData * threadData) {
inline bool PBFParser::readPBFBlobHeader(std::fstream& stream, _ThreadData * threadData) {
int size(0);
stream.read((char *)&size, sizeof(int));
size = swapEndian(size);
size = SwapEndian(size);
if(stream.eof()) {
return false;
}