diff options
Diffstat (limited to 'src/vnet/devices')
-rw-r--r-- | src/vnet/devices/virtio/device.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/vnet/devices/virtio/device.c b/src/vnet/devices/virtio/device.c index 56c0a98491e..1f1abfded77 100644 --- a/src/vnet/devices/virtio/device.c +++ b/src/vnet/devices/virtio/device.c @@ -86,14 +86,16 @@ format_virtio_tx_trace (u8 * s, va_list * va) virtio_tx_trace_t *t = va_arg (*va, virtio_tx_trace_t *); u32 indent = format_get_indent (s); - s = format (s, "%U ", format_generic_header_offset, &t->gho); - s = format (s, "%Ubuffer 0x%x: %U", + s = format (s, "%Ubuffer 0x%x: %U\n", format_white_space, indent, t->buffer_index, format_vnet_buffer, &t->buffer); - - s = format (s, "\n%U%U", format_white_space, indent, - format_ethernet_header_with_length, t->buffer.pre_data, - sizeof (t->buffer.pre_data)); + s = + format (s, "%U%U\n", format_white_space, indent, + format_generic_header_offset, &t->gho); + s = + format (s, "%U%U", format_white_space, indent, + format_ethernet_header_with_length, t->buffer.pre_data, + sizeof (t->buffer.pre_data)); return s; } |