Run formatter (#1139)

This commit is contained in:
Dragorn421
2022-02-13 00:29:48 +01:00
committed by GitHub
parent 8926b08582
commit ed0daabf98
9 changed files with 33 additions and 33 deletions
+1 -2
View File
@@ -24,7 +24,6 @@ void bootproc(void) {
Locale_Init();
StackCheck_Init(&sIdleThreadInfo, sIdleThreadStack, STACK_TOP(sIdleThreadStack), 0, 256, "idle");
osCreateThread(&sIdleThread, 1, Idle_ThreadEntry, NULL, STACK_TOP(sIdleThreadStack),
Z_PRIORITY_MAIN);
osCreateThread(&sIdleThread, 1, Idle_ThreadEntry, NULL, STACK_TOP(sIdleThreadStack), Z_PRIORITY_MAIN);
osStartThread(&sIdleThread);
}