diff options
author | petrcermak <petrcermak@chromium.org> | 2014-11-10 08:53:36 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-10 16:54:00 +0000 |
commit | 4fbad3daacb38caf006ccbbe4ad786690a8e59dd (patch) | |
tree | ff6c6a199f0750d29b8191f7f7e91f170dfc380c /base | |
parent | bb5422b0bc8d36219a52a241bfca20044e96295d (diff) | |
download | chromium_src-4fbad3daacb38caf006ccbbe4ad786690a8e59dd.zip chromium_src-4fbad3daacb38caf006ccbbe4ad786690a8e59dd.tar.gz chromium_src-4fbad3daacb38caf006ccbbe4ad786690a8e59dd.tar.bz2 |
Fix for Chromium Android Linker logging.
This patch fixes a problem introduced by
https://codereview.chromium.org/705613003/ where a LOG_INFO call breaks
compilation when debug tracing is enabled in linker_jni.cc.
BUG=390618
Review URL: https://codereview.chromium.org/713823003
Cr-Commit-Position: refs/heads/master@{#303481}
Diffstat (limited to 'base')
-rw-r--r-- | base/android/linker/linker_jni.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/android/linker/linker_jni.cc b/base/android/linker/linker_jni.cc index b3ed651..1a11639 100644 --- a/base/android/linker/linker_jni.cc +++ b/base/android/linker/linker_jni.cc @@ -664,7 +664,7 @@ jboolean CheckLibraryIsMappableInApk(JNIEnv* env, jclass clazz, __FUNCTION__, library_name_c_str, apkfile_name_c_str); jboolean mappable = crazy_linker_check_library_is_mappable_in_zip_file( apkfile_name_c_str, library_name_c_str) == CRAZY_STATUS_SUCCESS; - LOG_INFO("%s: %s\n", __FUNCTION__, aligned ? "Aligned" : "NOT aligned"); + LOG_INFO("%s: %s\n", __FUNCTION__, mappable ? "Mappable" : "NOT mappable"); return mappable; } |