]> git.mxchange.org Git - flightgear.git/commitdiff
Minor output format issue.
authorThorstenB <brehmt@gmail.com>
Sun, 13 Feb 2011 17:31:26 +0000 (18:31 +0100)
committerThorstenB <brehmt@gmail.com>
Sun, 13 Feb 2011 18:26:32 +0000 (19:26 +0100)
src/Main/fg_commands.cxx

index 2c7a24e70317d85174001866358f5b0c617fd9a6..97f5ca39971c83e2842ea1be4edcbbb4fa969469 100644 (file)
@@ -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();
         }