Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 74FE1200BCB for ; Thu, 24 Nov 2016 17:39:01 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 73B22160B1E; Thu, 24 Nov 2016 16:39:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E37BC160B20 for ; Thu, 24 Nov 2016 17:39:00 +0100 (CET) Received: (qmail 85420 invoked by uid 500); 24 Nov 2016 16:38:59 -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 85320 invoked by uid 99); 24 Nov 2016 16:38:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Nov 2016 16:38:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 528F9DFFAB; Thu, 24 Nov 2016 16:38:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alexr@apache.org To: commits@mesos.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: mesos git commit: Fixed a minor typo in "linux/ns.hpp". Date: Thu, 24 Nov 2016 16:38:59 +0000 (UTC) archived-at: Thu, 24 Nov 2016 16:39:01 -0000 Repository: mesos Updated Branches: refs/heads/master 826937e27 -> 27cb7606d Fixed a minor typo in "linux/ns.hpp". Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/27cb7606 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/27cb7606 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/27cb7606 Branch: refs/heads/master Commit: 27cb7606d648e5adfa5cfc6e1e8d0252eca1dab6 Parents: 826937e Author: Alexander Rukletsov Authored: Thu Nov 24 17:29:36 2016 +0100 Committer: Alexander Rukletsov Committed: Thu Nov 24 17:39:01 2016 +0100 ---------------------------------------------------------------------- src/linux/ns.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/27cb7606/src/linux/ns.hpp ---------------------------------------------------------------------- diff --git a/src/linux/ns.hpp b/src/linux/ns.hpp index 010a1fa..7778971 100644 --- a/src/linux/ns.hpp +++ b/src/linux/ns.hpp @@ -546,7 +546,7 @@ inline Try clone( // Need to reap the grandchild and then just exit since we're no // longer necessary. Technically when the grandchild exits it'll // be reaped but by doing a `waitpid` we can better propagate - // back any errors that might have occured with the grandchild. + // back any errors that might have occurred with the grandchild. int status; while (true) { if (waitpid(grandchild, &status, 0) == -1) {