am c553b955: Fix JNI return type checking on portable path.

* commit 'c553b95527b78c1fcf9b719a87d8875f71280f71':
  Fix JNI return type checking on portable path.
diff --git a/src/native/dalvik_system_Zygote.cc b/src/native/dalvik_system_Zygote.cc
index 3a8aa48..849455a 100644
--- a/src/native/dalvik_system_Zygote.cc
+++ b/src/native/dalvik_system_Zygote.cc
@@ -223,12 +223,10 @@
 }
 
 static void SetSchedulerPolicy() {
-#if 0 // SP_DEFAULT is not available in ics-mr1-plus-art.
   errno = -set_sched_policy(0, SP_DEFAULT);
   if (errno != 0) {
     PLOG(FATAL) << "set_sched_policy(0, SP_DEFAULT) failed";
   }
-#endif
 }
 
 #else