diff options
Diffstat (limited to 'src/surface.cc')
-rw-r--r-- | src/surface.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/surface.cc b/src/surface.cc index ec5d790..1a5f9bd 100644 --- a/src/surface.cc +++ b/src/surface.cc @@ -209,8 +209,8 @@ std::string SurfaceNode::toString() const { std::stringstream stream; - stream << this->name() << "(file = \"" << this->filename - << "\", center = " << (this->center ? "true" : "false") << ")"; + stream << this->name() << "(file = " << this->filename << ", " + "center = " << (this->center ? "true" : "false") << ")"; return stream.str(); } |