Build fix

Change-Id: Ib43e0f055e3c5f07b50393bfcab9738454835ac3
This commit is contained in:
Dmitriy Ivanov 2014-07-02 16:05:24 -07:00
parent 950a435fc0
commit d383066941
1 changed files with 1 additions and 1 deletions

View File

@ -857,7 +857,7 @@ soinfo* do_dlopen(const char* name, int flags, const android_dlextinfo* extinfo)
return NULL; return NULL;
} }
if (extinfo != NULL && ((extinfo->flags & ~(ANDROID_DLEXT_VALID_FLAG_BITS)) != 0)) { if (extinfo != NULL && ((extinfo->flags & ~(ANDROID_DLEXT_VALID_FLAG_BITS)) != 0)) {
DL_ERR("invalid extended flags to android_dlopen_ext: %llx", extinfo->flags); DL_ERR("invalid extended flags to android_dlopen_ext: %x", extinfo->flags);
return NULL; return NULL;
} }
protect_data(PROT_READ | PROT_WRITE); protect_data(PROT_READ | PROT_WRITE);