From: Stephen Hemminger Date: Fri, 14 Aug 2020 17:39:33 +0000 (-0700) Subject: net/failsafe: fix double space in warning log X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=09c00246e170fe6b15eeaf7c3d86f47fc02ef2bd;p=dpdk.git net/failsafe: fix double space in warning log Already get a newline from WARN() macro call. Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot") Cc: stable@dpdk.org Signed-off-by: Stephen Hemminger Acked-by: Gaetan Rivet --- diff --git a/drivers/net/failsafe/failsafe_ether.c b/drivers/net/failsafe/failsafe_ether.c index 2b748bd8b4..70972d6717 100644 --- a/drivers/net/failsafe/failsafe_ether.c +++ b/drivers/net/failsafe/failsafe_ether.c @@ -322,10 +322,10 @@ fs_dev_stats_save(struct sub_device *sdev) if (err) { uint64_t timestamp = sdev->stats_snapshot.timestamp; - WARN("Could not access latest statistics from sub-device %d.\n", + WARN("Could not access latest statistics from sub-device %d.", SUB_ID(sdev)); if (timestamp != 0) - WARN("Using latest snapshot taken before %"PRIu64" seconds.\n", + WARN("Using latest snapshot taken before %"PRIu64" seconds.", (rte_rdtsc() - timestamp) / rte_get_tsc_hz()); } failsafe_stats_increment