diff options
author | William Cohen <wcohen@redhat.com> | 2009-03-24 13:03:54 -0400 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2009-03-24 13:03:54 -0400 |
commit | 7d6c591292084444ada2ecdecafe59c730865451 (patch) | |
tree | a1e4ffcd442cf30d251b47e0afaaf49bf2cbfd94 | |
parent | 3c1b3d06ef3134b30e804d189d346c5f83c6f3a6 (diff) | |
download | systemtap-steved-7d6c591292084444ada2ecdecafe59c730865451.tar.gz systemtap-steved-7d6c591292084444ada2ecdecafe59c730865451.tar.xz systemtap-steved-7d6c591292084444ada2ecdecafe59c730865451.zip |
Strip off "probe" for the probe documentation generation.
-rwxr-xr-x | scripts/kernel-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 92178910..7f2db03f 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -2083,7 +2083,7 @@ sub process_state3_probe($$) { my $prototype = shift; my $file = shift; - $prototype =~ s@/probe/@@o; # strip off leading 'probe' + $prototype =~ s@probe@@o; # strip off leading 'probe' $prototype =~ s@^\s+@@gos; # strip leading spaces dump_probe($prototype,$file); reset_state(); |