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
path: root/src
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-01-04 11:06:30 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-01-04 11:06:30 +0300
commit214e4fb2b768475e1a02d5565d49428ccd8fde99 (patch)
treef764eb9df47efea015ad62ad370682e4a2553363 /src
parenta1faa083d9e9715efe952f0a6f2e73e35ab28e68 (diff)
Fixed bug in Heat::Activate (thanks Andy)
Diffstat (limited to 'src')
-rw-r--r--src/Heating/Heat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Heating/Heat.cpp b/src/Heating/Heat.cpp
index 40f116fa..1e06c968 100644
--- a/src/Heating/Heat.cpp
+++ b/src/Heating/Heat.cpp
@@ -783,7 +783,7 @@ GCodeResult Heat::Activate(int heater, const StringRef& reply) noexcept
{
return h->Activate(reply);
}
- reply.copy("Heater %d not found", heater);
+ reply.printf("Heater %d not found", heater);
return GCodeResult::error;
}