diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-01 18:20:32 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-01 18:20:32 +0100 |
commit | a4571e661f662eabf4ab15d5302b576333fd6371 (patch) | |
tree | 0e81ec21588b62e66abc9ca8bd934e82fa557b36 /source4/pidl/lib/Parse | |
parent | 77a2870186d3b10ea15ba5e001e7a703f0a5ccaf (diff) | |
download | samba-a4571e661f662eabf4ab15d5302b576333fd6371.tar.gz samba-a4571e661f662eabf4ab15d5302b576333fd6371.tar.bz2 samba-a4571e661f662eabf4ab15d5302b576333fd6371.zip |
pidl: cosmetic fix to use the same value everywhere
metze
(This used to be commit 3c191981436ab3f7dd166a87875ffbac127fbdf5)
Diffstat (limited to 'source4/pidl/lib/Parse')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/NDR.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/NDR.pm b/source4/pidl/lib/Parse/Pidl/NDR.pm index 5a34c5f94f..98e8f183a2 100644 --- a/source4/pidl/lib/Parse/Pidl/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/NDR.pm @@ -623,7 +623,7 @@ sub CheckPointerTypes($$) foreach my $e (@{$s->{ELEMENTS}}) { if ($e->{POINTERS} and not defined(pointer_type($e))) { - $e->{PROPERTIES}->{$default} = 1; + $e->{PROPERTIES}->{$default} = '1'; } } } |