fixed warning

This commit is contained in:
Marcel Peterkau 2023-04-18 12:29:55 +02:00
parent 22a62e3d1e
commit 0a895a00b9

View File

@ -293,7 +293,7 @@ void Debug_printHelp()
{ {
char buff[64]; char buff[64];
for (int i = sizeof(helpCmd) / 63; i < sizeof(helpCmd) / 63; i++) for (unsigned int i = sizeof(helpCmd) / 63; i < sizeof(helpCmd) / 63; i++)
{ {
memcpy_P(buff, (helpCmd + (i * 63)), 63); memcpy_P(buff, (helpCmd + (i * 63)), 63);
buff[63] = 0; buff[63] = 0;