Fix native core runtime. A messy declaration was causing a problem at boot time.

This commit is contained in:
Romain Guy
2009-05-12 15:43:26 -07:00
parent c64322c352
commit 2bb3ea162a

View File

@@ -150,7 +150,7 @@ static JNINativeMethod gTypefaceMethods[] = {
{ "nativeGetStyle", "(I)I", (void*)Typeface_getStyle }, { "nativeGetStyle", "(I)I", (void*)Typeface_getStyle },
{ "nativeCreateFromAsset", "(Landroid/content/res/AssetManager;Ljava/lang/String;)I", { "nativeCreateFromAsset", "(Landroid/content/res/AssetManager;Ljava/lang/String;)I",
(void*)Typeface_createFromAsset }, (void*)Typeface_createFromAsset },
{ "nativeCreateFromFile", "(Ljava/lang/String)I", { "nativeCreateFromFile", "(Ljava/lang/String;)I",
(void*)Typeface_createFromFile } (void*)Typeface_createFromFile }
}; };