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>2021-11-05 14:34:10 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-05 14:34:10 +0300
commite07e82db07d0962efd26cdef2d302128b4772d6d (patch)
tree6f918ffc89e5ef930ff5da3e89d150fe6c84f992
parent7bcb3af0392c5299bfe038fb540f23c6163976cf (diff)
Increased max length of string parameter in exception messages
-rw-r--r--src/GCodes/GCodeException.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeException.h b/src/GCodes/GCodeException.h
index c1129c34..a1dd0f4d 100644
--- a/src/GCodes/GCodeException.h
+++ b/src/GCodes/GCodeException.h
@@ -50,7 +50,7 @@ private:
uint32_t u;
} param;
bool haveStringParam;
- String<StringLength20> stringParam;
+ String<StringLength50> stringParam;
};
#endif /* SRC_GCODES_GCODEEXCEPTION_H_ */