Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2d753fa authored by Li Hong's avatar Li Hong Committed by Steven Rostedt
Browse files

tracing: Correct the check for number of arguments in recordmcount.pl



The number of arguments passed into recordmcount.pl is 10, but the code
checks if only 7 are passed in.

Signed-off-by: default avatarLi Hong <lihong.hi@gmail.com>
LKML-Reference: <20091027065733.GB22032@uhli>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent d49f6aa7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ $P =~ s@.*/@@g;

my $V = '0.1';

if ($#ARGV < 7) {
if ($#ARGV != 10) {
	print "usage: $P arch bits objdump objcopy cc ld nm rm mv is_module inputfile\n";
	print "version: $V\n";
	exit(1);