summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2009-03-23 11:16:13 -0400
committerWilliam Cohen <wcohen@redhat.com>2009-03-23 11:16:13 -0400
commitd4db5608dbc31868a2041f20ea3f473eef3e61fd (patch)
treeefde099e14353243a7edfe471985b199ecf1478d /scripts
parent407658581b73f4f4a99e002f085a06c4ebb0864b (diff)
downloadsystemtap-steved-d4db5608dbc31868a2041f20ea3f473eef3e61fd.tar.gz
systemtap-steved-d4db5608dbc31868a2041f20ea3f473eef3e61fd.tar.xz
systemtap-steved-d4db5608dbc31868a2041f20ea3f473eef3e61fd.zip
Add missing escape in kernel-doc create_sparameterlist() matching.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kernel-doc2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 9947882d..92178910 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -1774,7 +1774,7 @@ sub create_sparameterlist($$$) {
my $param;
foreach my $arg (split($splitter, $args)) {
- if ($arg =~ m/s*([\w]+)\s*:?\s*([\w]*)/) {
+ if ($arg =~ m/\s*([\w]+)\s*:?\s*([\w]*)/) {
$param = $1;
$type = $2;
push_parameter($param, $type, $file);