From: Jon Loeliger Date: Sat, 5 May 2018 21:11:31 +0000 (-0500) Subject: BFD: Fix format_ip46_address() parameter ordering. X-Git-Tag: v18.07-rc1~374 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=6732aea6a491013bbc1abd23607b68650cd31f04 BFD: Fix format_ip46_address() parameter ordering. Change-Id: I2b50e3fc06b4e905395d4706083f12ebc76826ce Signed-off-by: Jon Loeliger --- diff --git a/src/vnet/bfd/bfd_udp.c b/src/vnet/bfd/bfd_udp.c index 5464ce91f57..fa696aa2006 100644 --- a/src/vnet/bfd/bfd_udp.c +++ b/src/vnet/bfd/bfd_udp.c @@ -589,7 +589,7 @@ bfd_udp_validate_api_input (u32 sw_if_index, { vlib_log_err (bum->log_class, "local address %U not found on interface with index %u", - format_ip46_address, IP46_TYPE_ANY, local_addr, + format_ip46_address, local_addr, IP46_TYPE_ANY, sw_if_index); return VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE; }