Description: Fix for pthread_stack
Forwarded: not-needed
--- a/runtime/thread.cc
+++ b/runtime/thread.cc
@@ -706,7 +706,7 @@ static size_t FixStackSize(size_t stack_size) {
 
   // It's not possible to request a stack smaller than the system-defined PTHREAD_STACK_MIN.
   if (stack_size < PTHREAD_STACK_MIN) {
-    stack_size = PTHREAD_STACK_MIN;
+    stack_size = (size_t) PTHREAD_STACK_MIN;
   }
 
   if (Runtime::Current()->GetImplicitStackOverflowChecks()) {
