From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] rte_ring: add newline to error message Date: Wed, 27 Mar 2019 12:21:25 +0100 Message-ID: <2813505.FGjIkkUpHa@xps> References: <20190321230341.6576-1-stephen@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, olivier.matz@6wind.com, pablo.de.lara.guarch@intel.com, ramirose@gmail.com To: Stephen Hemminger Return-path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id EC12C5F2A for ; Wed, 27 Mar 2019 12:21:29 +0100 (CET) In-Reply-To: <20190321230341.6576-1-stephen@networkplumber.org> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 22/03/2019 00:03, Stephen Hemminger: > Log message should end with newline. > > Fixes: 4e32101f9b01 ("ring: support freeing") > Signed-off-by: Stephen Hemminger > --- > - RTE_LOG(ERR, RING, "Cannot free ring (not created with rte_ring_create()"); > + RTE_LOG(ERR, RING, > + "Cannot free ring (not created with rte_ring_create()\n"); While at it, could you fix the parens? I think it would be better to replace the first paren with a comma.