]> sourceware.org Git - systemtap.git/commitdiff
Add missing escape in kernel-doc create_sparameterlist() matching.
authorWilliam Cohen <wcohen@redhat.com>
Mon, 23 Mar 2009 15:16:13 +0000 (11:16 -0400)
committerWilliam Cohen <wcohen@redhat.com>
Mon, 23 Mar 2009 15:16:13 +0000 (11:16 -0400)
scripts/kernel-doc

index 9947882d0c88260d7e0c33cf88f5e7f85f7714ec..921789105da75bc1c49003f6f00fda9c37fe9965 100755 (executable)
@@ -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);
This page took 0.02827 seconds and 5 git commands to generate.