diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-07 15:03:19 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-07 15:03:19 +0000 |
| commit | 04d6d8f14ffe74b30398f5745fd2afa946955b9d (patch) | |
| tree | fb912f16657a6d9131c2a8cfc6b85a0e36cd1c1e /firmware/thread.c | |
| parent | 9430a0b7d6beeab9c5c5f223ccb4b6d5d2a2ea66 (diff) | |
| download | rockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.zip rockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.tar.gz rockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.tar.bz2 rockbox-04d6d8f14ffe74b30398f5745fd2afa946955b9d.tar.xz | |
Removed a warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@921 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
| -rw-r--r-- | firmware/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 4da6d9a..aee1f6f 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -38,7 +38,7 @@ typedef struct ctx_t ctx[MAXTHREADS]; } thread_t; -static thread_t threads = {1, 0}; +static thread_t threads; /*--------------------------------------------------------------------------- * Store non-volatile context. |