eal: fix typo in doc of pointer offset macro
authorThomas Monjalon <thomas@monjalon.net>
Tue, 1 May 2018 19:35:50 +0000 (21:35 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 13 May 2018 23:32:09 +0000 (01:32 +0200)
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

index 679f2f1..434adfd 100644 (file)
@@ -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)))