Fixed extra ')' in chSysInit().

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9149 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-03-22 13:44:01 +00:00
parent 79bd7cc8ea
commit 8b53874c73
1 changed files with 1 additions and 1 deletions

View File

@ -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.*/