1
0
Fork 0
forked from len0rd/rockbox

Oops, deadbeef is unsigned

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5653 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jean-Philippe Bernardy 2005-01-24 13:32:52 +00:00
parent a61d9857e8
commit 1265d03141

View file

@ -47,7 +47,8 @@ struct regs
};
#endif
#define DEADBEEF ((int)0xdeadbeef)
#define DEADBEEF ((unsigned int)0xdeadbeef)
/* Cast to the the machine int type, whose size could be < 4. */
int num_threads;