Skip to content

Commit b8db1b9

Browse files
committed
Change another "" to AsciiString::TheEmptyString
1 parent dc17ca0 commit b8db1b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Generals/Code/GameEngine/Source/Common/System/DataChunk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ AsciiString DataChunkInput::openDataChunk(DataChunkVersionType *ver )
743743
c->next = m_chunkStack;
744744
m_chunkStack = c;
745745
if (this->atEndOfFile()) {
746-
return ("");
746+
return AsciiString::TheEmptyString;
747747
}
748748
return m_contents.getName( c->id );
749749
}

GeneralsMD/Code/GameEngine/Source/Common/System/DataChunk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ AsciiString DataChunkInput::openDataChunk(DataChunkVersionType *ver )
743743
c->next = m_chunkStack;
744744
m_chunkStack = c;
745745
if (this->atEndOfFile()) {
746-
return ("");
746+
return AsciiString::TheEmptyString;
747747
}
748748
return m_contents.getName( c->id );
749749
}

0 commit comments

Comments
 (0)