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:
Diffstat (limited to 'src/Reprap.cpp')
-rw-r--r--src/Reprap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Reprap.cpp b/src/Reprap.cpp
index a0a9300e..6b39b3ff 100644
--- a/src/Reprap.cpp
+++ b/src/Reprap.cpp
@@ -896,14 +896,14 @@ OutputBuffer *RepRap::GetStatusResponse(uint8_t type, ResponseSource source)
if (source == ResponseSource::AUX)
{
- OutputBuffer *response = platform->GetAuxGCodeReply();
+ OutputBuffer *reply = platform->GetAuxGCodeReply();
if (response != nullptr)
{
// Send the response to the last command. Do this last
response->catf(",\"seq\":%u,\"resp\":", platform->GetAuxSeq()); // send the response sequence number
// Send the JSON response
- response->EncodeReply(response, true); // also releases the OutputBuffer chain
+ response->EncodeReply(reply, true); // also releases the OutputBuffer chain
}
}
response->cat("}");