summaryrefslogtreecommitdiff
path: root/ofproto/ofproto-dpif-trace.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-05-25 17:01:48 -0700
committerBen Pfaff <blp@ovn.org>2018-06-11 15:31:58 -0700
commit393e9f7c34773e63b960b176d88ac4704be42d01 (patch)
tree2c96b659a6845ea0f128cacccca675775bb94042 /ofproto/ofproto-dpif-trace.c
parent828519ca71c5902a7c9784896312b00e094f4d1a (diff)
downloadopenvswitch-393e9f7c34773e63b960b176d88ac4704be42d01.tar.gz
ofproto-dpif-trace: Remove tabs from output.
OVS uses spaces for indentation in source code and it makes sense for it to also use spaces for indentation in output. Spaces also consume less horizontal space in output, which often makes it easier to read. This commit transitions one part of output from tabs to spaces and updates appropriate parts of the tests to match. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
Diffstat (limited to 'ofproto/ofproto-dpif-trace.c')
-rw-r--r--ofproto/ofproto-dpif-trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ofproto/ofproto-dpif-trace.c b/ofproto/ofproto-dpif-trace.c
index 396a06ba0..5f38cae16 100644
--- a/ofproto/ofproto-dpif-trace.c
+++ b/ofproto/ofproto-dpif-trace.c
@@ -637,7 +637,7 @@ ofproto_trace__(struct ofproto_dpif *ofproto, const struct flow *flow,
while (slow) {
enum slow_path_reason bit = rightmost_1bit(slow);
- ds_put_format(output, "\n\t- %s.",
+ ds_put_format(output, "\n - %s.",
slow_path_reason_to_explanation(bit));
slow &= ~bit;