Fixed extra ')' in chSysInit().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9149 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
79bd7cc8ea
commit
8b53874c73
|
@ -128,7 +128,7 @@ void chSysInit(void) {
|
|||
currp = _thread_init(&ch.mainthread, "main", NORMALPRIO);
|
||||
#else
|
||||
/* Now this instructions flow becomes the idle thread.*/
|
||||
currp = _thread_init(&ch.mainthread, "idle", IDLEPRIO));
|
||||
currp = _thread_init(&ch.mainthread, "idle", IDLEPRIO);
|
||||
#endif
|
||||
|
||||
/* Setting up the base address of the static main thread stack.*/
|
||||
|
|
Loading…
Reference in New Issue