summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 537a1f0700..a77d82ba74 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -47,7 +47,8 @@ struct regs
47}; 47};
48#endif 48#endif
49 49
50#define DEADBEEF ((int)0xdeadbeef) 50#define DEADBEEF ((unsigned int)0xdeadbeef)
51/* Cast to the the machine int type, whose size could be < 4. */
51 52
52 53
53int num_threads; 54int num_threads;