From: Ahreum Jeong Date: Mon, 7 Aug 2017 06:13:10 +0000 (+0900) Subject: Add space to follow coding rule in thread_create X-Git-Tag: 1.1_Public_Release~391^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd78f7744c460ab607d70da43f38670cb7c1b5b8;p=rtos%2Ftinyara.git Add space to follow coding rule in thread_create --- diff --git a/os/kernel/task/task_create.c b/os/kernel/task/task_create.c index fc3aa72..cee1623 100644 --- a/os/kernel/task/task_create.c +++ b/os/kernel/task/task_create.c @@ -133,7 +133,7 @@ static int thread_create(FAR const char *name, uint8_t ttype, int priority, int /* Check whether we are allowed to create new task ? */ if (g_alive_taskcount == CONFIG_MAX_TASKS) { - sdbg("ERROR: CONFIG_MAX_TASKS(%d) count reached\n",CONFIG_MAX_TASKS); + sdbg("ERROR: CONFIG_MAX_TASKS(%d) count reached\n", CONFIG_MAX_TASKS); errcode = EBUSY; goto errout; }