From d94fc8f009c7a2c6657b179d3b0ca30e69fdd45c Mon Sep 17 00:00:00 2001 From: Mike Jensen Date: Tue, 4 Mar 2014 11:21:14 -0700 Subject: [PATCH] Fix for travis build failure for needing to initialize the new field in Thread. --- src/classpath-avian.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classpath-avian.cpp b/src/classpath-avian.cpp index dbbf821828..e49d4fa0c1 100644 --- a/src/classpath-avian.cpp +++ b/src/classpath-avian.cpp @@ -52,7 +52,7 @@ class MyClasspath : public Classpath { const unsigned NormalPriority = 5; return vm::makeThread - (t, 0, 0, 0, 0, NewState, NormalPriority, 0, 0, 0, + (t, 0, 0, 0, 0, 0, NewState, NormalPriority, 0, 0, 0, root(t, Machine::AppLoader), 0, 0, group, 0); }