From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com
 [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id A96F729AC;
 Tue,  1 May 2018 21:35:56 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 123AB21B96;
 Tue,  1 May 2018 15:35:56 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Tue, 01 May 2018 15:35:56 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:date:from:message-id:subject:to:x-me-sender:x-me-sender
 :x-sasl-enc; s=mesmtp; bh=iJ3twZMLl0TSqjrIh/p/NicbN9awxd8ARHBWcR
 wIQpU=; b=AT8YtitbYjRwbWmVSHj4qMZ1S+/RtXVhHWxVWbq3szzvCbL5wcfV+0
 B4seUA7NbvmrswTcdkHAjeB+xsXrug0AHEMtxfl3vbess/18mnLU5n4J5xNXPo3e
 wawcoH+3gMm8ZI8G8TbyDb4iWHAf9Dr3i9BKVa2M6v17S4uun/BOU=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:date:from:message-id:subject:to
 :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=iJ3twZMLl0TSqjrIh
 /p/NicbN9awxd8ARHBWcRwIQpU=; b=RzsghWS5DCHKs/BOaBgMJBs5lDb0cqQgF
 LqIS3dfMz1U2QlHlSJjK0R2y+PG2O/1bDxnU/YguvoYAtcRchDsg8Iv0sW1KWWqk
 UXdGG8wAdGbsQPra2w+KWIIe6DTNx0OYbgxG5dnZ/YpIJ5GWUv7Xv2JB9pjMj0pH
 jsKmf2CGcYp6T4fsbfdDQRdpnZ/GJZvJxhjHAFLA1ixR83HD2u7K4M0eaV7NXLE5
 iJMfKU3kegTRUtojSDA3InxSZ3cHsVWVo4LIhNYVJoNjAdFzUwOgQMrLDPA49X/I
 +SQZwmTurD/wGWQK1SfulZ60noIMVEq4SxreQtF3HTEy/pejSrwxA==
X-ME-Sender: <xms:m8HoWqmlQj6C9I9M9uu4hkAz419XD34hUTB-EKJ5RhoFqRGIJ4mQGQ>
Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 65FB2E444A;
 Tue,  1 May 2018 15:35:55 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Cc: stable@dpdk.org
Date: Tue,  1 May 2018 21:35:50 +0200
Message-Id: <20180501193550.1224-1-thomas@monjalon.net>
X-Mailer: git-send-email 2.16.2
Subject: [dpdk-stable] [PATCH] eal: fix typo in doc of pointer offset macro
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Tue, 01 May 2018 19:35:57 -0000

Fixes: af75078fece3 ("first public release")
Cc: stable@dpdk.org

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 lib/librte_eal/common/include/rte_common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_eal/common/include/rte_common.h b/lib/librte_eal/common/include/rte_common.h
index 69e5ed1e3..ca4d0eaa6 100644
--- a/lib/librte_eal/common/include/rte_common.h
+++ b/lib/librte_eal/common/include/rte_common.h
@@ -124,7 +124,7 @@ static void __attribute__((constructor(RTE_PRIO(prio)), used)) func(void)
 /*********** Macros for pointer arithmetic ********/
 
 /**
- * add a byte-value offset from a pointer
+ * add a byte-value offset to a pointer
  */
 #define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x)))
 
-- 
2.16.2