From d1cb4d4f43206e3a6b590d794788b3365e17742b Mon Sep 17 00:00:00 2001 From: Dana Robinson <43805+derobins@users.noreply.github.com> Date: Thu, 7 Mar 2024 10:55:50 -0800 Subject: [PATCH] Update trace --- bin/trace | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/trace b/bin/trace index d07367f67ac..5941f3a89a8 100755 --- a/bin/trace +++ b/bin/trace @@ -318,7 +318,7 @@ sub rewrite_func ($$$$$) { $args =~ s/\/\*\s*in\s*\*\///g; # Get rid of /*in*/ $args =~ s/\/\*\s*out\s*\*\///g; # Get rid of /*out*/ $args =~ s/\/\*\s*in,\s*out\s*\*\///g; # Get rid of /*in,out*/ - $args =~ s/\/\*\s*in_out\s*\*\///g; # Get rid of /*in,out*/ + $args =~ s/\/\*\s*in_out\s*\*\///g; # Get rid of /*in_out*/ $args =~ s/H5FL_TRACK_PARAMS//g; # Remove free list macro $args =~ s/\n#.*?\n/\n/g; # Remove lines beginning with '#' my @args = split /,[\s\n]*/, $args;