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

Unified Diff: native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc

Issue 320983002: [NaCl SDK] nacl_io: Allows subtree of html5fs to be mounted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
Index: native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc b/native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc
index cb2a6f6ddf62de2d4147798d6ff0b04cc0d0adce..c77bd8b44c877a7bf34d400043035213c31b249e 100644
--- a/native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc
+++ b/native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc
@@ -321,7 +321,7 @@ Error HttpFs::ParseManifest(const char* text) {
mode = S_IFCHR;
break;
default:
- LOG_ERROR("Unable to parse type %s for %s.\n",
+ LOG_ERROR("Unable to parse type %s for %s.",
modestr.c_str(),
name.c_str());
return EINVAL;
@@ -334,7 +334,7 @@ Error HttpFs::ParseManifest(const char* text) {
mode |= S_IRUSR | S_IRGRP | S_IROTH;
break;
default:
- LOG_ERROR("Unable to parse read %s for %s.\n",
+ LOG_ERROR("Unable to parse read %s for %s.",
modestr.c_str(),
name.c_str());
return EINVAL;
@@ -347,7 +347,7 @@ Error HttpFs::ParseManifest(const char* text) {
mode |= S_IWUSR | S_IWGRP | S_IWOTH;
break;
default:
- LOG_ERROR("Unable to parse write %s for %s.\n",
+ LOG_ERROR("Unable to parse write %s for %s.",
modestr.c_str(),
name.c_str());
return EINVAL;

Powered by Google App Engine
This is Rietveld 408576698