diff options
-rwxr-xr-x | scripts/bloat-o-meter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index cd2916cfbac4..549d0ab8c662 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter | |||
@@ -19,7 +19,7 @@ def getsizes(file): | |||
19 | size, type, name = l[:-1].split() | 19 | size, type, name = l[:-1].split() |
20 | if type in "tTdDbBrR": | 20 | if type in "tTdDbBrR": |
21 | # strip generated symbols | 21 | # strip generated symbols |
22 | if name[:6] == "__mod_": continue | 22 | if name.startswith("__mod_"): continue |
23 | if name == "linux_banner": continue | 23 | if name == "linux_banner": continue |
24 | # statics and some other optimizations adds random .NUMBER | 24 | # statics and some other optimizations adds random .NUMBER |
25 | name = re.sub(r'\.[0-9]+', '', name) | 25 | name = re.sub(r'\.[0-9]+', '', name) |