From 666320d9ea1bf3d4f49e7fc50825d1e058f377c3 Mon Sep 17 00:00:00 2001 From: zawz Date: Sat, 17 Aug 2019 00:37:34 +0200 Subject: [PATCH] filedat: added spaces to strval() for more readability --- src/filedat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filedat.cpp b/src/filedat.cpp index 341e448..21bc03c 100644 --- a/src/filedat.cpp +++ b/src/filedat.cpp @@ -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';