Index: mojo/android/system/core_impl.cc |
diff --git a/mojo/android/system/core_impl.cc b/mojo/android/system/core_impl.cc |
index 473bf329d1e6399b84bdc6bab346750c5ef4d5b9..1d7f87925acef56119e26a939e0f9318952cf7bf 100644 |
--- a/mojo/android/system/core_impl.cc |
+++ b/mojo/android/system/core_impl.cc |
@@ -78,7 +78,8 @@ static jint WaitMany(JNIEnv* env, |
static jobject CreateMessagePipe(JNIEnv* env, jobject jcaller) { |
MojoHandle handle1; |
MojoHandle handle2; |
- MojoResult result = MojoCreateMessagePipe(&handle1, &handle2); |
+ // TODO(vtl): Add support for the options struct. |
+ MojoResult result = MojoCreateMessagePipe(NULL, &handle1, &handle2); |
return Java_CoreImpl_newNativeCreationResult(env, result, handle1, handle2) |
.Release(); |
} |