Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Unified Diff: native_client_sdk/src/libraries/nacl_io/dir_node.cc

Issue 635113002: [NaCl SDK] nacl_io: Fix real_node when dealing with a windows terminal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_io/getdents_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/libraries/nacl_io/dir_node.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/dir_node.cc b/native_client_sdk/src/libraries/nacl_io/dir_node.cc
index 6cf0656d04365c5107f75711dc3c7970c5f2d323..f8b23e12b9d575cc8ba5641758640fe813b59a5b 100644
--- a/native_client_sdk/src/libraries/nacl_io/dir_node.cc
+++ b/native_client_sdk/src/libraries/nacl_io/dir_node.cc
@@ -92,7 +92,7 @@ Error DirNode::AddChild(const std::string& name, const ScopedNode& node) {
NodeMap_t::iterator it = map_.find(name);
if (it != map_.end()) {
- LOG_TRACE("Can't add child \"%s\", it already exists.", name);
+ LOG_TRACE("Can't add child \"%s\", it already exists.", name.c_str());
return EEXIST;
}
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_io/getdents_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698