From eddd042dbfff696329c1dd9eba7f9b1e861430be Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Sat, 20 Jun 2020 16:06:49 +0100 Subject: [PATCH] src/Instrumentation/HUD/HUD.cxx: removed unnecessary newline in SG_LOG() text. --- src/Instrumentation/HUD/HUD.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrumentation/HUD/HUD.cxx b/src/Instrumentation/HUD/HUD.cxx index b062dcbd7..051826ae2 100644 --- a/src/Instrumentation/HUD/HUD.cxx +++ b/src/Instrumentation/HUD/HUD.cxx @@ -363,7 +363,7 @@ int HUD::load(const char *file, float x, float y, int level, const string& inden } if (!level) { - SG_LOG(SG_INPUT, TREE, endl << "load " << file); + SG_LOG(SG_INPUT, TREE, "load " << file); _items.erase(_items.begin(), _items.end()); _ladders.erase(_ladders.begin(), _ladders.end()); } else if (level > MAXNEST) {