Commit 4d97f36a by Nicolas Capens Committed by Nicolas Capens

Fix signed/unsigned comparison warning.

Change-Id: Ibec89dd4463274db4ed7381cf20320a0c9f46a57 Reviewed-on: https://swiftshader-review.googlesource.com/10549Tested-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com>
parent d6db8683
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include <pthread.h> #include <pthread.h>
#include <sched.h> #include <sched.h>
#include <unistd.h> #include <unistd.h>
#define TLS_OUT_OF_INDEXES (~0) #define TLS_OUT_OF_INDEXES (pthread_key_t)(~0)
#endif #endif
namespace sw namespace sw
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment