From: Thomas Monjalon Date: Thu, 6 Jul 2017 15:47:50 +0000 (+0200) Subject: net/ring: add missing newlines in logs X-Git-Tag: spdx-start~2457 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=1a35dc877a27286e51999f9707115c0cd11712f0;p=dpdk.git net/ring: add missing newlines in logs Some logs are missing the newline character \n. The logs using only one line can be checked with this command: git grep 'RTE_LOG(.*".*[^n]"' drivers/net/ring/ Fixes: 61934c0956d4 ("ring: convert to use of PMD_REGISTER_DRIVER and fix linking") Signed-off-by: Thomas Monjalon --- diff --git a/drivers/net/ring/rte_eth_ring.c b/drivers/net/ring/rte_eth_ring.c index 820a41104a..464d3d3842 100644 --- a/drivers/net/ring/rte_eth_ring.c +++ b/drivers/net/ring/rte_eth_ring.c @@ -494,7 +494,8 @@ static int parse_kvlist (const char *key __rte_unused, const char *value, void * node = strchr(name, ':'); if (!node) { - RTE_LOG(WARNING, PMD, "could not parse node value from %s", name); + RTE_LOG(WARNING, PMD, "could not parse node value from %s\n", + name); goto out; } @@ -503,7 +504,8 @@ static int parse_kvlist (const char *key __rte_unused, const char *value, void * action = strchr(node, ':'); if (!action) { - RTE_LOG(WARNING, PMD, "could not action value from %s", node); + RTE_LOG(WARNING, PMD, "could not parse action value from %s\n", + node); goto out; }