summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/os_start.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2007-02-21 21:55:16 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2007-02-21 21:55:16 +0000
commit51796f7eb75baec8d8fe67d905ae1d9aa786a7d7 (patch)
treefbe3518a364d6b9d811e00f7201e082d50ead7e3 /nuttx/sched/os_start.c
parent3b6264b053c94e7fcc110aa7c9b88b829acadcd0 (diff)
Progress toward clean SDCC compilation
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@18 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched/os_start.c')
-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 6381800821..09de22ce3f 100644
--- a/nuttx/sched/os_start.c
+++ b/nuttx/sched/os_start.c
@@ -386,7 +386,7 @@ void os_start(void)
{
/* Remove the first delayed deallocation. */
- uint32 saved_state = irqsave();
+ irqstate_t saved_state = irqsave();
void *address = (void*)sq_remfirst(&g_delayeddeallocations);
irqrestore(saved_state);