From 0a895a00b9314a22cbd3dc0e7e7cec8a09bca5c4 Mon Sep 17 00:00:00 2001 From: Marcel Peterkau Date: Tue, 18 Apr 2023 12:29:55 +0200 Subject: [PATCH] fixed warning --- Software/src/debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/src/debugger.cpp b/Software/src/debugger.cpp index 573075d..02dbf43 100644 --- a/Software/src/debugger.cpp +++ b/Software/src/debugger.cpp @@ -293,7 +293,7 @@ void Debug_printHelp() { 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); buff[63] = 0;