summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/os_start.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-03-25 21:05:02 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-03-25 21:05:02 +0000
commitea6f2252102e999dbf2d9ca8ba87ba86158deb9c (patch)
tree3a5370172d71cc0f15a4f362973209e22d28f009 /nuttx/sched/os_start.c
parent6ca17cfd7a5f7b7fe0701ae5fa4a7fc47a0afeb0 (diff)
Use const storage class on a few declarations to save SRAM
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4523 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 889c28fb88..05a7330f39 100644
--- a/nuttx/sched/os_start.c
+++ b/nuttx/sched/os_start.c
@@ -208,7 +208,7 @@ static FAR _TCB g_idletcb;
/* This is the name of the idle task */
-static FAR char g_idlename[] = "Idle Task";
+static FAR const char g_idlename[] = "Idle Task";
/****************************************************************************
* Private Function Prototypes