diff options
author | Dimitry Ivanov <dimitry@google.com> | 2016-07-21 11:33:40 -0700 |
---|---|---|
committer | Dimitry Ivanov <dimitry@google.com> | 2016-08-01 19:47:27 +0000 |
commit | 769b33fadf45a039741f932672ac2c4f901d7d4a (patch) | |
tree | bf29858de176dd3bf144c547174eb99e1727e85a /linker/linker_utils.cpp | |
parent | c5e79567e0b02eb3a02d6b2820b901d4ba392e87 (diff) |
Sync linker with internal branch
This change includes dlwarning implementation and
the compatibility greylist for apps targeting pre-N.
Change-Id: Ibf02a07cc58cbbb1a5aef4ac34558c5d43e4305f
Test: Run bionic-unit-tests --gtest_filter=dl*:Dl*
Diffstat (limited to 'linker/linker_utils.cpp')
-rw-r--r-- | linker/linker_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linker/linker_utils.cpp b/linker/linker_utils.cpp index 1b0c4e4c9..fb070eed0 100644 --- a/linker/linker_utils.cpp +++ b/linker/linker_utils.cpp @@ -20,7 +20,7 @@ bool normalize_path(const char* path, std::string* normalized_path) { // Input should be an absolute path if (path[0] != '/') { - PRINT("normalize_path - invalid input: '%s', the input path should be absolute", path); + PRINT("normalize_path - invalid input: \"%s\", the input path should be absolute", path); return false; } @@ -89,7 +89,7 @@ bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* } const char* const path = normalized_path.c_str(); - TRACE("Trying zip file open from path '%s' -> normalized '%s'", input_path, path); + TRACE("Trying zip file open from path \"%s\" -> normalized \"%s\"", input_path, path); // Treat an '!/' separator inside a path as the separator between the name // of the zip file on disk and the subdirectory to search within it. |