From 8b53874c73dabebaa1cf57c4fef45c1a3ccf4cc5 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 22 Mar 2016 13:44:01 +0000 Subject: Fixed extra ')' in chSysInit(). git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9149 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/src/chsys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/rt/src/chsys.c b/os/rt/src/chsys.c index 628007732..21a87a8a7 100644 --- a/os/rt/src/chsys.c +++ b/os/rt/src/chsys.c @@ -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.*/ -- cgit v1.2.3