aboutsummaryrefslogtreecommitdiff
path: root/nuttx/sched
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-13 22:04:47 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-13 22:04:47 +0000
commitae33fc3ed02ad0c56612124a26028123c353bee0 (patch)
treeb7b479778114a18c40f6fc2b874664cc61f7241a /nuttx/sched
parent491a83acb40aa1fa87c1c6894c3ecbe957c19e54 (diff)
downloadpx4-firmware-ae33fc3ed02ad0c56612124a26028123c353bee0.tar.gz
px4-firmware-ae33fc3ed02ad0c56612124a26028123c353bee0.tar.bz2
px4-firmware-ae33fc3ed02ad0c56612124a26028123c353bee0.zip
Fixes for z80 compilation with SDCC toolchain. There are still a few header file and linker issues
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5149 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched')
-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 b340d0ec8..d71a0e174 100644
--- a/nuttx/sched/prctl.c
+++ b/nuttx/sched/prctl.c
@@ -91,7 +91,7 @@ int prctl(int option, ...)
{
/* Get the prctl arguments */
- char *name = va_arg(ap, char *);
+ FAR char *name = va_arg(ap, FAR char *);
int pid = va_arg(ap, int);
FAR _TCB *tcb;