Skip to content

Commit

Permalink
Fix args extraction for ktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
dgl committed Jun 27, 2010
1 parent 9f8940d commit 832b6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Sys/Trace/Impl/Ktrace.pm
Expand Up @@ -111,7 +111,7 @@ sub parse {

# Add additional info
@cur{@call_names} = $call{args} =~ $call_re;
$cur{args} = split /,/, $cur{args};
$cur{args} = [split /,/, $cur{args}];

} elsif($call{type} eq 'NAMI') {
# Name for something
Expand Down

0 comments on commit 832b6f3

Please sign in to comment.