Repository: mesos
Updated Branches:
  refs/heads/master df774c079 -> cbe704f44


Fixed a compiler error in `os/windows/rmdir.hpp`.


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

Branch: refs/heads/master
Commit: cbe704f444df30d2e53bcb9b7208278ca27c4c5b
Parents: df774c0
Author: Michael Park <[email protected]>
Authored: Thu Jan 21 15:31:45 2016 -0800
Committer: Michael Park <[email protected]>
Committed: Thu Jan 21 15:31:46 2016 -0800

----------------------------------------------------------------------
 .../libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/cbe704f4/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp
----------------------------------------------------------------------
diff --git 
a/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp 
b/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp
index 6decdc5..9a592c4 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/rmdir.hpp
@@ -93,7 +93,7 @@ Try<Nothing> recursive_remove_directory(const std::string& 
path)
   // Finally, remove current directory.
   if (::_rmdir(current_path.c_str()) == -1) {
     return ErrnoError(
-        "`os::internal::recursive_remove_directory` attempted to delete file " 
+
+        "`os::internal::recursive_remove_directory` attempted to delete file "
         "'" + current_path + "', but failed");
   }
 

Reply via email to