You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jp...@apache.org on 2017/11/28 16:29:26 UTC

mesos git commit: Added a space to an error string.

Repository: mesos
Updated Branches:
  refs/heads/master 00dfbc80b -> dbf2707d9


Added a space to an error string.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/dbf2707d
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/dbf2707d
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/dbf2707d

Branch: refs/heads/master
Commit: dbf2707d9e7b5184fbbb7956b51fdc445d5571de
Parents: 00dfbc8
Author: James Peach <jp...@apache.org>
Authored: Tue Nov 28 08:28:59 2017 -0800
Committer: James Peach <jp...@apache.org>
Committed: Tue Nov 28 08:28:59 2017 -0800

----------------------------------------------------------------------
 src/linux/fs.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/dbf2707d/src/linux/fs.cpp
----------------------------------------------------------------------
diff --git a/src/linux/fs.cpp b/src/linux/fs.cpp
index 40c31a3..c69e7c2 100644
--- a/src/linux/fs.cpp
+++ b/src/linux/fs.cpp
@@ -561,7 +561,7 @@ Try<Nothing> copyDeviceNode(const string& source, const string& target)
 
   Try<Nothing> mknod = os::mknod(target, mode.get(), dev.get());
   if (mknod.isError()) {
-    return Error("Failed to create device:" + mknod.error());
+    return Error("Failed to create device: " + mknod.error());
   }
 
   Try<Nothing> chmod = os::chmod(target, mode.get());