vnet: print Success for API errno 0 instead of UNKNOWN

Type: improvement
Change-Id: I8c5bfc82c1db1213eb43072853f8500ce1d2ee92
Signed-off-by: Klement Sekera <klement.sekera@gmail.com>
This commit is contained in:
Klement Sekera
2024-04-14 13:45:42 +02:00
committed by Dave Wallace
parent 2514001377
commit 357291142b

View File

@ -37,6 +37,10 @@ u8 *
format_vnet_api_errno (u8 *s, va_list *args)
{
vnet_api_error_t api_error = va_arg (*args, vnet_api_error_t);
if (0 == api_error)
return format (s, "Success");
#ifdef _
#undef _
#endif