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-31 14:31:00 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-31 14:31:00 +0300
commit9365fa7b739854f06b76c16d5d8dc61c7481950c (patch)
treecdc11c9e67e57ae0780e3a7b40a7563c14f0b840 /src/GCodes/GCodeBuffer/StringParser.cpp
parent07d6b8078ae0c3ac9fe43a3da2717ed7c20fe69d (diff)
parentd3550b3b618b16f25b70c4a2e9b74cfba4b9c7fe (diff)
Merge branch '3.4-dev' into 3.4-extruder-only-movement-fix3.4-extruder-only-movement-fix
Diffstat (limited to 'src/GCodes/GCodeBuffer/StringParser.cpp')
-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;
}
}