diff options
author | Volker Lendecke <vl@samba.org> | 2013-10-11 11:59:25 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-10-11 16:11:56 +0200 |
commit | 13b4dab31c3813d3e08578726e8fc1e9e51e6080 (patch) | |
tree | 6178b2af616fa769014f6c3e7ce37e30a1316eac /pidl/lib/Parse | |
parent | 275f6586c4d4547978c6ff2f04670b0d8f89fd4b (diff) | |
download | samba-13b4dab31c3813d3e08578726e8fc1e9e51e6080.tar.gz samba-13b4dab31c3813d3e08578726e8fc1e9e51e6080.tar.bz2 samba-13b4dab31c3813d3e08578726e8fc1e9e51e6080.zip |
pidl: fix an error message typo
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'pidl/lib/Parse')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm index 54b6f132df..3deab2ec95 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm @@ -261,7 +261,7 @@ sub check_fully_dereferenced($$) $nump = $_->{POINTER_INDEX}+1; } } - warning($element->{ORIGINAL}, "Got pointer for `$e->{NAME}', expected fully derefenced variable") if ($nump > length($ptr)); + warning($element->{ORIGINAL}, "Got pointer for `$e->{NAME}', expected fully dereferenced variable") if ($nump > length($ptr)); return ($origvar); } } |