Skip to content

Commit

Permalink
Fix 'const const'
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard Sukharev committed Mar 10, 2023
1 parent 5f68390 commit 5810a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/extui/mks_ui/wifi_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,7 @@ static void wifi_list_msg_handle(const uint8_t * const msg, const uint16_t msgLe
}
}

static void gcode_msg_handle(const uint8_t * const msg, const const uint16_t msgLen) {
static void gcode_msg_handle(const uint8_t * const msg, const uint16_t msgLen) {
uint8_t gcodeBuf[100] = { 0 };

if (msgLen <= 0) return;
Expand Down

0 comments on commit 5810a78

Please sign in to comment.