Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-08-19 18:32:13 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-19 18:32:44 +0300
commitbab47b6dac88b3ce0de9a15fb2557a9e9fd8e8d9 (patch)
treeef1806f05ba1bb701efd9a3ab5d93997ba08e3c8
parentb26b85ce810f1635f927a3b01d15f7d4575b49c8 (diff)
Added missing newline in warning message
-rw-r--r--src/GCodes/GCodeBuffer/StringParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeBuffer/StringParser.cpp b/src/GCodes/GCodeBuffer/StringParser.cpp
index bd8b2c74..75113d42 100644
--- a/src/GCodes/GCodeBuffer/StringParser.cpp
+++ b/src/GCodes/GCodeBuffer/StringParser.cpp
@@ -433,7 +433,7 @@ void StringParser::CheckForMixedSpacesAndTabs() noexcept
if (seenMetaCommand && !warnedAboutMixedSpacesAndTabs && seenLeadingSpace && seenLeadingTab)
{
reprap.GetPlatform().MessageF(AddWarning(gb.GetResponseMessageType()),
- "both space and tab characters used to indent blocks by line %" PRIu32, gb.GetLineNumber());
+ "both space and tab characters used to indent blocks at/before line %" PRIu32 "\n", gb.GetLineNumber());
warnedAboutMixedSpacesAndTabs = true;
}
}