Skip to content

Commit

Permalink
libcore: Fixed crash when describing an archive entry
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 1, 2019
1 parent f30c841 commit f0a37af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libs/core/src/filesys/archiveentryfile.cpp
Expand Up @@ -80,7 +80,7 @@ String ArchiveEntryFile::describe() const
{
DE_GUARD(this);

return String("archive entry \"%s\"", d->entryPath.c_str());
return String::format("archive entry \"%s\"", d->entryPath.c_str());
}

void ArchiveEntryFile::clear()
Expand Down

0 comments on commit f0a37af

Please sign in to comment.