diff options
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. |