bootdiag: forgot #else

This commit is contained in:
TuxSH 2022-04-11 13:36:14 +01:00
parent cb398f1e4a
commit 1e95344588

View File

@ -108,9 +108,12 @@ MyThread *bootdiagCreateThread(void)
svcBreak(USERBREAK_PANIC);
return &bootdiagThread;
}
#endif
#else
MyThread *bootdiagCreateThread(void)
{
return NULL;
}
#endif