[git commit] bloat-o-meter: fix tab/space mixing

Mike Frysinger vapier at gentoo.org
Mon Jun 1 20:34:11 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=5177e28e9c8d1d0453f906abbf198d0b13c01bfb
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master


Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 scripts/bloat-o-meter |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
index 02e8c8a..38d2f5c 100755
--- a/scripts/bloat-o-meter
+++ b/scripts/bloat-o-meter
@@ -25,10 +25,10 @@ nm_args = " ".join([x for x in sys.argv[3:]])
 def getsizes(file):
     sym = {}
     for l in os.popen("nm --size-sort %s %s" % (nm_args, file)).readlines():
-    	l = l.strip()
-	# Skip empty lines
+        l = l.strip()
+        # Skip empty lines
         if not len(l): continue
-	# Skip archive members
+        # Skip archive members
         if len(l.split()) == 1 and l.endswith(':'):
           continue
         size, type, name = l.split()
-- 
1.6.0.6


More information about the busybox-cvs mailing list