diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-03-11 09:00:13 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-03-11 11:02:22 +0100 |
commit | f3465da07242cfa3f45da668c7ffa86e8beacf0e (patch) | |
tree | f2fc58f54d439d5941e78daf69fdbf3d36f2922b /pidl/lib | |
parent | 0726b29e5967f2d3fba21b6556b4d8c102ab3621 (diff) | |
download | samba-f3465da07242cfa3f45da668c7ffa86e8beacf0e.tar.gz samba-f3465da07242cfa3f45da668c7ffa86e8beacf0e.tar.xz samba-f3465da07242cfa3f45da668c7ffa86e8beacf0e.zip |
pidl:Samba4/NDR/Parser: fix compiler warnings in 'pipe' related code
metze
Diffstat (limited to 'pidl/lib')
-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 f84610d6c81..7cda2729fce 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{"); |