From f3465da07242cfa3f45da668c7ffa86e8beacf0e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 11 Mar 2011 09:00:13 +0100 Subject: pidl:Samba4/NDR/Parser: fix compiler warnings in 'pipe' related code metze --- pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pidl') 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{"); -- cgit