From 3b555d82f6f13f48d034a3e9ef785e5a5a69d5d8 Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Fri, 12 Sep 2014 10:53:03 -0400 Subject: [PATCH] go.mobile/bind/java: fix build I really need to sort out a builder story for end-to-end apps. LGTM=adonovan R=adonovan CC=golang-codereviews https://golang.org/cl/136580043 --- bind/java/seq_android.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bind/java/seq_android.go b/bind/java/seq_android.go index 0b175fa..fca1073 100644 --- a/bind/java/seq_android.go +++ b/bind/java/seq_android.go @@ -15,6 +15,7 @@ import ( "sync" "unsafe" + "code.google.com/p/go.mobile/app" "code.google.com/p/go.mobile/bind/seq" ) @@ -71,7 +72,7 @@ func init() { func init() { app.JavaInit = func(javaVM uintptr) { - C.init_seq(javaVM) + C.init_seq(unsafe.Pointer(javaVM)) } }