Commit 61fc4708 authored by Matteo Croce's avatar Matteo Croce Committed by Masahiro Yamada
Browse files

scripts/bloat-o-meter: fix typos in help



The bloat-o-meter script has two typos in the help, fix both.

Fixes: 192efb7a ("bloat-o-meter: provide 3 different arguments for data, function and All")
Signed-off-by: default avatarMatteo Croce <mcroce@redhat.com>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 638e69cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
if len(sys.argv) < 3:
    sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
    sys.stderr.write("The options are:\n")
    sys.stderr.write("-c	cateogrize output based on symbole type\n")
    sys.stderr.write("-c	categorize output based on symbol type\n")
    sys.stderr.write("-d	Show delta of Data Section\n")
    sys.stderr.write("-t	Show delta of text Section\n")
    sys.exit(-1)