Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 15203958 authored by Romain Guy's avatar Romain Guy Committed by The Android Open Source Project
Browse files

am 2bb3ea16: Fix native core runtime. A messy declaration was causing a p

Merge commit '2bb3ea16'

* commit '2bb3ea16':
  Fix native core runtime. A messy declaration was causing a problem at boot time.
parents f11e6691 2bb3ea16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ static JNINativeMethod gTypefaceMethods[] = {
    { "nativeGetStyle",           "(I)I",  (void*)Typeface_getStyle },
    { "nativeCreateFromAsset",    "(Landroid/content/res/AssetManager;Ljava/lang/String;)I",
                                           (void*)Typeface_createFromAsset },
    { "nativeCreateFromFile",     "(Ljava/lang/String)I",
    { "nativeCreateFromFile",     "(Ljava/lang/String;)I",
                                           (void*)Typeface_createFromFile }
};