pfcp-tool: fix extra newline in vty_out

Change-Id: Ib3bb0795238f251ea5b515fe639280be66542a01
This commit is contained in:
Neels Janosch Hofmeyr
2024-07-31 06:30:09 +02:00
parent 4738fc2014
commit 3efa019656

View File

@@ -97,7 +97,7 @@ DEFUN(c_listen, c_listen_cmd,
rc = osmo_pfcp_endpoint_bind(g_pfcp_tool->ep);
if (rc) {
vty_out(vty, "Failed to bind PFCP endpoint on %s: %s%s\n",
vty_out(vty, "Failed to bind PFCP endpoint on %s: %s%s",
osmo_sockaddr_to_str_c(OTC_SELECT, osmo_pfcp_endpoint_get_local_addr(g_pfcp_tool->ep)),
strerror(-rc), VTY_NEWLINE);
return CMD_WARNING;