filedat: added spaces to strval() for more readability

This commit is contained in:
zawz 2019-08-17 00:37:34 +02:00
parent a14ca48556
commit 666320d9ea

View file

@ -738,7 +738,7 @@ std::string ztd::chunkdat::strval(unsigned int alignment, std::string const& ali
{
ret += repeatString(aligner,alignment+1);
ret += it.first;
ret += '=';
ret += " = ";
if(it.second!=nullptr)
ret += it.second->strval(alignment+1, aligner);
ret += '\n';