From: Steven Luong Date: Wed, 16 Sep 2020 20:10:53 +0000 (-0700) Subject: avf: wrong argument passed to avf_log_err X-Git-Tag: v21.06-rc0~518 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=ba3a20082d8e17388bfeca6c2b422e3a11a4eb69;p=vpp.git avf: wrong argument passed to avf_log_err Type: fix Signed-off-by: Steven Luong Change-Id: Ica4601c9d17e182cbc348989a9f75ab1cb18b78a --- diff --git a/src/plugins/avf/device.c b/src/plugins/avf/device.c index 2b4801e2c81..0481e61b294 100644 --- a/src/plugins/avf/device.c +++ b/src/plugins/avf/device.c @@ -1241,7 +1241,7 @@ avf_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) if ((err = avf_config_promisc_mode (vm, ad, is_enable))) { - avf_log_err (ad, "%s: %U", format_clib_error, err); + avf_log_err (ad, "error: %U", format_clib_error, err); clib_error_free (err); } }