Return-Path: X-Original-To: apmail-mesos-commits-archive@www.apache.org Delivered-To: apmail-mesos-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 08E4D172FA for ; Wed, 8 Oct 2014 23:36:09 +0000 (UTC) Received: (qmail 72067 invoked by uid 500); 8 Oct 2014 23:36:09 -0000 Delivered-To: apmail-mesos-commits-archive@mesos.apache.org Received: (qmail 72042 invoked by uid 500); 8 Oct 2014 23:36:08 -0000 Mailing-List: contact commits-help@mesos.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mesos.apache.org Delivered-To: mailing list commits@mesos.apache.org Received: (qmail 72033 invoked by uid 99); 8 Oct 2014 23:36:08 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Oct 2014 23:36:08 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id ABAAB98C74E; Wed, 8 Oct 2014 23:36:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nnielsen@apache.org To: commits@mesos.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Replaced hard tabs with spaces in module/manager.cpp. Date: Wed, 8 Oct 2014 23:36:08 +0000 (UTC) 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 Authored: Wed Oct 8 16:34:56 2014 -0700 Committer: Niklas Q. Nielsen 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 ModuleManager::load(const Modules& modules) Try 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 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(); }