aboutsummaryrefslogtreecommitdiff
path: root/nuttx/sched
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-03-28 00:10:43 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-03-28 00:10:43 +0000
commitfb9d418f66f4ed9a516cc26e056ffedabcb78169 (patch)
treec93decb412e433193f06fc5602a9560119017d19 /nuttx/sched
parent1a975c0a58aa62cad758bbf931cdaaafe10de230 (diff)
downloadpx4-firmware-fb9d418f66f4ed9a516cc26e056ffedabcb78169.tar.gz
px4-firmware-fb9d418f66f4ed9a516cc26e056ffedabcb78169.tar.bz2
px4-firmware-fb9d418f66f4ed9a516cc26e056ffedabcb78169.zip
NFS update
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4532 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched')
-rw-r--r--nuttx/sched/os_start.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/os_start.c b/nuttx/sched/os_start.c
index 05a7330f3..2f154c6ec 100644
--- a/nuttx/sched/os_start.c
+++ b/nuttx/sched/os_start.c
@@ -278,7 +278,7 @@ void os_start(void)
strncpy(g_idletcb.name, g_idlename, CONFIG_TASK_NAME_SIZE-1);
g_idletcb.argv[0] = g_idletcb.name;
#else
- g_idletcb.argv[0] = g_idlename;
+ g_idletcb.argv[0] = (char*)g_idlename;
#endif /* CONFIG_TASK_NAME_SIZE */
/* Then add the idle task's TCB to the head of the ready to run list */