summaryrefslogtreecommitdiff
path: root/nuttx/sched/prctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/prctl.c')
-rw-r--r--nuttx/sched/prctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/prctl.c b/nuttx/sched/prctl.c
index bc55992b4..817083561 100644
--- a/nuttx/sched/prctl.c
+++ b/nuttx/sched/prctl.c
@@ -140,7 +140,7 @@ int prctl(int option, ...)
/* The returned value will be null-terminated, truncating if necessary */
strncpy(name, tcb->name, CONFIG_TASK_NAME_SIZE-1);
- name[CONFIG_TASK_NAME_SIZE-1];
+ name[CONFIG_TASK_NAME_SIZE-1] = '\0';
}
}
break;