summaryrefslogtreecommitdiff
path: root/utilities/bugtool/ovs-bugtool-tc-class-show
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-05-25 17:11:07 -0700
committerBen Pfaff <blp@ovn.org>2018-06-11 15:32:00 -0700
commit5a0e4aec1af5cf7741c490bce704577e51e536b9 (patch)
tree0115e5184d50e22d6f6e7c7bd87a2690bdcc6ca4 /utilities/bugtool/ovs-bugtool-tc-class-show
parent7be29a47576dce715f9c8b2b4f673fa623728ed0 (diff)
downloadopenvswitch-5a0e4aec1af5cf7741c490bce704577e51e536b9.tar.gz
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 <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
Diffstat (limited to 'utilities/bugtool/ovs-bugtool-tc-class-show')
-rwxr-xr-xutilities/bugtool/ovs-bugtool-tc-class-show6
1 files changed, 3 insertions, 3 deletions
diff --git a/utilities/bugtool/ovs-bugtool-tc-class-show b/utilities/bugtool/ovs-bugtool-tc-class-show
index 5e6ae0a1b..904789f11 100755
--- a/utilities/bugtool/ovs-bugtool-tc-class-show
+++ b/utilities/bugtool/ovs-bugtool-tc-class-show
@@ -18,8 +18,8 @@
for iface in $(cd /sys/class/net && echo *); do
if [ -d /sys/class/net/$iface ]; then
- echo Interface $iface:
- # indent tc output so it's clear which interface it pertains to
- /sbin/tc -s -d class show dev $iface | /bin/sed 's/^/ /'
+ echo Interface $iface:
+ # indent tc output so it's clear which interface it pertains to
+ /sbin/tc -s -d class show dev $iface | /bin/sed 's/^/ /'
fi
done