You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by nn...@apache.org on 2014/10/09 01:36:08 UTC

git commit: Replaced hard tabs with spaces in module/manager.cpp.

Repository: mesos
Updated Branches:
  refs/heads/master 93701846c -> 885579453


Replaced hard tabs with spaces in module/manager.cpp.

Review: https://reviews.apache.org/r/26467


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

Branch: refs/heads/master
Commit: 885579453dc9a5e2f399861f718a7f5621984884
Parents: 9370184
Author: Kapil Arya <ka...@mesosphere.io>
Authored: Wed Oct 8 16:34:56 2014 -0700
Committer: Niklas Q. Nielsen <ni...@mesosphere.io>
Committed: Wed Oct 8 16:34:56 2014 -0700

----------------------------------------------------------------------
 src/module/manager.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/88557945/src/module/manager.cpp
----------------------------------------------------------------------
diff --git a/src/module/manager.cpp b/src/module/manager.cpp
index 72041c0..e2a9478 100644
--- a/src/module/manager.cpp
+++ b/src/module/manager.cpp
@@ -191,13 +191,13 @@ Try<Nothing> ModuleManager::load(const Modules& modules)
       Try<void*> symbol =  dynamicLibrary->loadSymbol(moduleName);
       if (symbol.isError()) {
         return Error(
-	    "Error loading module '" + moduleName + "': " + symbol.error());
+            "Error loading module '" + moduleName + "': " + symbol.error());
       }
       ModuleBase* moduleBase = (ModuleBase*) symbol.get();
       Try<Nothing> result = verifyModule(moduleName, moduleBase);
       if (result.isError()) {
-	return Error(
-	    "Error verifying module '" + moduleName + "': " + result.error());
+        return Error(
+            "Error verifying module '" + moduleName + "': " + result.error());
       }
       moduleBases[moduleName] = (ModuleBase*) symbol.get();
     }