From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 42327A034F; Wed, 13 May 2020 12:42:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 451581D15C; Wed, 13 May 2020 12:42:36 +0200 (CEST) Received: from relay11.mail.gandi.net (relay11.mail.gandi.net [217.70.178.231]) by dpdk.org (Postfix) with ESMTP id 55D691D14C; Wed, 13 May 2020 12:42:35 +0200 (CEST) Received: from inocybe.home (lfbn-idf2-1-566-132.w86-246.abo.wanadoo.fr [86.246.31.132]) (Authenticated sender: grive@u256.net) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 08F5610000E; Wed, 13 May 2020 10:42:34 +0000 (UTC) From: Gaetan Rivet To: dev@dpdk.org Cc: stable@dpdk.org Date: Wed, 13 May 2020 12:42:29 +0200 Message-Id: <20200513104229.45900-1-grive@u256.net> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v1] kvargs: fix strcmp helper documentation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Minor error, unless was used instead of unlike. Cc: stable@dpdk.org Fixes: a3b85476c51e ("kvargs: add generic string matching callback") Signed-off-by: Gaetan Rivet --- lib/librte_kvargs/rte_kvargs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_kvargs/rte_kvargs.h b/lib/librte_kvargs/rte_kvargs.h index 1946195de..eff598e08 100644 --- a/lib/librte_kvargs/rte_kvargs.h +++ b/lib/librte_kvargs/rte_kvargs.h @@ -171,7 +171,7 @@ unsigned rte_kvargs_count(const struct rte_kvargs *kvlist, * 0 if the strings match. * !0 otherwise or on error. * - * Unless strcmp, comparison ordering is not kept. + * Unlike strcmp, comparison ordering is not kept. * In order for rte_kvargs_process to stop processing on match error, * a negative value is returned even if strcmp had returned a positive one. */ -- 2.26.2