X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp%2Fapi%2Fcustom_dump.c;h=4c88b8ff959bf28d8546578276324f89071f4fcb;hb=1f8697c4b68c81766a7b9734e816ebfccffb3edc;hp=99ad18978e5561aac75f39cb667a83b5c308c636;hpb=f8db62a0016a3e1282bb02b5bdb167d8de4584d1;p=vpp.git diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 99ad18978e5..4c88b8ff959 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -561,7 +561,7 @@ static void *vl_api_tap_create_v2_t_print memset (null_mac, 0, sizeof (null_mac)); s = format (0, "SCRIPT: tap_create_v2 "); - s = format (s, "id %u ", mp->id); + s = format (s, "id %u ", ntohl (mp->id)); if (memcmp (mp->mac_address, null_mac, 6)) s = format (s, "mac-address %U ", format_ethernet_address, mp->mac_address); @@ -585,9 +585,9 @@ static void *vl_api_tap_create_v2_t_print if (mp->host_ip6_gw_set) s = format (s, "host-ip6-gw %U ", format_ip6_address, mp->host_ip6_addr); if (mp->tx_ring_sz) - s = format (s, "tx-ring-size %d ", mp->tx_ring_sz); + s = format (s, "tx-ring-size %u ", ntohs (mp->tx_ring_sz)); if (mp->rx_ring_sz) - s = format (s, "rx-ring-size %d ", mp->rx_ring_sz); + s = format (s, "rx-ring-size %u ", ntohs (mp->rx_ring_sz)); FINISH; }