From a0b8000aa8255beadfb3963cd0d21826d380e9b2 Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 8 Oct 2002 21:46:41 +0000 Subject: [PATCH] Fix leak_finder.pl script to work with new CDEBUG() format. --- lustre/tests/leak_finder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/leak_finder.pl b/lustre/tests/leak_finder.pl index 99a0f67..4290b62 100644 --- a/lustre/tests/leak_finder.pl +++ b/lustre/tests/leak_finder.pl @@ -6,7 +6,7 @@ my $debug_line = 0; while ($line = <>) { $debug_line++; my ($file, $func, $lno, $name, $size, $addr, $type); - if ($line =~ m/^.*\(@\d+ (.*):(.*)\,l\. (\d+) .* k(.*) '(.*)': (\d+) at (.*) \(tot .*$/) { + if ($line =~ m/^.*\((.*):(.*)\,l\. (\d+) .* k(.*) '(.*)': (\d+) at (.*) \(tot .*$/) { $file = $1; $func = $2; $lno = $3; -- 1.8.3.1