From: Keith Wiles Date: Sat, 10 Mar 2018 16:24:28 +0000 (-0600) Subject: kvargs: fix syntax in comments X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=2a5002362d2af81590c958773021cd297830f270;p=dpdk.git kvargs: fix syntax in comments Use commas as separator, not semicolons. Fixes: a8b97e3a1db0 ("devargs: use a comma instead of semicolon to separate key/values") Cc: stable@dpdk.org Signed-off-by: Keith Wiles Acked-by: Ferruh Yigit --- diff --git a/lib/librte_kvargs/rte_kvargs.c b/lib/librte_kvargs/rte_kvargs.c index 9662375e86..d92a5f9dcd 100644 --- a/lib/librte_kvargs/rte_kvargs.c +++ b/lib/librte_kvargs/rte_kvargs.c @@ -13,7 +13,7 @@ /* * Receive a string with a list of arguments following the pattern - * key=value;key=value;... and insert them into the list. + * key=value,key=value,... and insert them into the list. * strtok() is used so the params string will be copied to be modified. */ static int @@ -154,7 +154,7 @@ rte_kvargs_free(struct rte_kvargs *kvlist) } /* - * Parse the arguments "key=value;key=value;..." string and return + * Parse the arguments "key=value,key=value,..." string and return * an allocated structure that contains a key/value list. Also * check if only valid keys were used. */