From 5a0e4aec1af5cf7741c490bce704577e51e536b9 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 25 May 2018 17:11:07 -0700 Subject: treewide: Convert leading tabs to spaces. It's always been OVS coding style to use spaces rather than tabs for indentation, but some tabs have snuck in over time. This commit converts them to spaces. Signed-off-by: Ben Pfaff Acked-by: Justin Pettit --- lib/ofp-print.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/ofp-print.c') diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 68e382471..05a39c22b 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -1634,12 +1634,12 @@ print_tlv_table(struct ds *s, struct ovs_list *mappings) struct ofputil_tlv_map *map; ds_put_cstr(s, " mapping table:\n"); - ds_put_cstr(s, " class\ttype\tlength\tmatch field\n"); - ds_put_cstr(s, " -----\t----\t------\t-----------"); + ds_put_cstr(s, " class type length match field\n"); + ds_put_cstr(s, " ------ ---- ------ --------------"); LIST_FOR_EACH (map, list_node, mappings) { - ds_put_char(s, '\n'); - ds_put_format(s, " 0x%"PRIx16"\t0x%"PRIx8"\t%"PRIu8"\ttun_metadata%"PRIu16, + ds_put_format(s, "\n %#6"PRIx16" %#4"PRIx8" %6"PRIu8" " + "tun_metadata%"PRIu16, map->option_class, map->option_type, map->option_len, map->index); } -- cgit v1.2.1