diff options
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm index f84610d6c8..7cda2729fc 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm @@ -2466,7 +2466,7 @@ sub ParseGeneratePipeArray($$$) $self->deindent; $self->pidl("},"); } - $self->pidl("{ NULL, NULL, 0, NULL, NULL, NULL, NULL }"); + $self->pidl("{ NULL, NULL, 0, NULL, NULL, NULL }"); $self->deindent; $self->pidl("};"); $self->pidl(""); @@ -2523,11 +2523,11 @@ sub FunctionCallEntry($$) my $out_pipes_ptr = "NULL"; if ($in_pipes) { - $in_pipes_ptr = "\&$d->{NAME}_in_pipes"; + $in_pipes_ptr = "$d->{NAME}_in_pipes"; } if ($out_pipes) { - $out_pipes_ptr = "\&$d->{NAME}_out_pipes"; + $out_pipes_ptr = "$d->{NAME}_out_pipes"; } $self->pidl("\t{"); |