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

Commit 997d15e1 authored by Olivier Bailly's avatar Olivier Bailly Committed by Android (Google) Code Review
Browse files

Merge "fix int vs. pointer mismatch in return statement. Add missing include...

Merge "fix int vs. pointer mismatch in return statement. Add missing include header for compilation on x86 target."
parents a84a744b d7c8672c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
#include <utime.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stdint.h>

#include <cutils/properties.h>

+1 −1
Original line number Diff line number Diff line
@@ -1296,7 +1296,7 @@ static jint android_content_AssetManager_getArraySize(JNIEnv* env, jobject clazz
{
    AssetManager* am = assetManagerForJavaObject(env, clazz);
    if (am == NULL) {
        return NULL;
        return 0;
    }
    const ResTable& res(am->getResources());