summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-06-07 15:03:19 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-06-07 15:03:19 +0000
commit04d6d8f14ffe74b30398f5745fd2afa946955b9d (patch)
treefb912f16657a6d9131c2a8cfc6b85a0e36cd1c1e
parent9430a0b7d6beeab9c5c5f223ccb4b6d5d2a2ea66 (diff)
downloadrockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.tar.gz
rockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.zip
Removed a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@921 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 4da6d9aaf2..aee1f6fd5c 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -38,7 +38,7 @@ typedef struct
38 ctx_t ctx[MAXTHREADS]; 38 ctx_t ctx[MAXTHREADS];
39} thread_t; 39} thread_t;
40 40
41static thread_t threads = {1, 0}; 41static thread_t threads;
42 42
43/*--------------------------------------------------------------------------- 43/*---------------------------------------------------------------------------
44 * Store non-volatile context. 44 * Store non-volatile context.