From 5dd2f3164ab7c3c6bd6d231966096366222c263a Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 6 Dec 2013 23:15:11 +0000 Subject: [PATCH] [Thermo] Fix printed labels in phase report when show_thermo=False --- src/thermo/ThermoPhase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/thermo/ThermoPhase.cpp b/src/thermo/ThermoPhase.cpp index 766445289..f75eb5f21 100644 --- a/src/thermo/ThermoPhase.cpp +++ b/src/thermo/ThermoPhase.cpp @@ -966,8 +966,8 @@ std::string ThermoPhase::report(bool show_thermo) const s += p; } } else { - sprintf(p, " \n X" - "Y\n"); + sprintf(p, " \n X " + " Y\n"); s += p; sprintf(p, " -------------" " ------------\n");