Add space to follow coding rule in thread_create
authorAhreum Jeong <ahreum.jeong@samsung.com>
Mon, 7 Aug 2017 06:13:10 +0000 (15:13 +0900)
committerAhreum Jeong <ahreum.jeong@samsung.com>
Wed, 9 Aug 2017 10:20:02 +0000 (19:20 +0900)
os/kernel/task/task_create.c

index fc3aa72..cee1623 100644 (file)
@@ -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;
        }