summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2013-10-11 11:59:25 +0200
committerAndreas Schneider <asn@samba.org>2013-10-11 16:11:56 +0200
commit13b4dab31c3813d3e08578726e8fc1e9e51e6080 (patch)
tree6178b2af616fa769014f6c3e7ce37e30a1316eac /pidl
parent275f6586c4d4547978c6ff2f04670b0d8f89fd4b (diff)
downloadsamba-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')
-rw-r--r--pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm2
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);
}
}