Enable int-conversion warnings and fix all current instances (#1280)

* Enable int-conversion warnings for gcc/clang

* Fix all current int-conversion warnings

* Run format.sh

* Apply review suggestions
This commit is contained in:
Roman971
2022-06-16 02:15:44 +02:00
committed by GitHub
parent 5299208291
commit 08c8126ba5
46 changed files with 225 additions and 224 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ s32 StackCheck_GetState(StackEntry* entry) {
osSyncPrintf(VT_RST);
if (ret != STACK_STATUS_OK) {
LogUtils_LogHexDump(entry->head, entry->tail - entry->head);
LogUtils_LogHexDump((void*)entry->head, entry->tail - entry->head);
}
return ret;