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-13 22:02:10 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-11-13 22:02:10 +0300
commitf168f2a340461fe5d67c96601b4c1b37aaca0523 (patch)
treeb58c48479337043d63afcc052004a9353276cf3d /src/Platform
parentaf452e756c4bbed60d3b35d7ed3f64bdcebd78ee (diff)
Static analysis fixes
Diffstat (limited to 'src/Platform')
-rw-r--r--src/Platform/MessageType.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/MessageType.h b/src/Platform/MessageType.h
index 70072808..482732bb 100644
--- a/src/Platform/MessageType.h
+++ b/src/Platform/MessageType.h
@@ -32,7 +32,7 @@ enum MessageType : uint32_t
BlockingUsbMessage = 0x10000u, // A message that is to be sent to USB in blocking mode
ImmediateAuxMessage = 0x20000u, // A message that is to be sent to LCD in immediate mode
- DestinationsMask = 0x308FFu, // Mask for all the destinations
+ DestinationsMask = 0x308FFu, // Mask for all the destinations
// Special indicators (byte 4)
// The first two are not processed when calling the version of Platform::Message that takes an OutputBuffer.