From 45f526aca57baa4b61904dd406b1452d7f653eeb Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Sun, 13 Feb 2011 18:31:26 +0100 Subject: [PATCH] Minor output format issue. --- src/Main/fg_commands.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index 2c7a24e70..97f5ca399 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -247,7 +247,7 @@ do_reinit (const SGPropertyNode * arg) if (subsystem == 0) { result = false; SG_LOG( SG_GENERAL, SG_ALERT, - "Subsystem " << name << "not found" ); + "Subsystem " << name << " not found" ); } else { subsystem->reinit(); } @@ -280,7 +280,7 @@ do_suspend (const SGPropertyNode * arg) SGSubsystem * subsystem = globals->get_subsystem(name); if (subsystem == 0) { result = false; - SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found"); + SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << " not found"); } else { subsystem->suspend(); } @@ -304,7 +304,7 @@ do_resume (const SGPropertyNode * arg) SGSubsystem * subsystem = globals->get_subsystem(name); if (subsystem == 0) { result = false; - SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found"); + SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << " not found"); } else { subsystem->resume(); }