summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-10-26 22:18:09 +0200
committerAndrew Bartlett <abartlet@samba.org>2016-12-01 05:54:21 +0100
commit3c9d703d45a72cf10b4e9065e2071fff84dc67c8 (patch)
tree0e020f5791caded99e2f2aebee955cf02a0ead6f /pidl
parenta39c4948a6bbda02a6b74b8e7e01dde290392e3d (diff)
downloadsamba-3c9d703d45a72cf10b4e9065e2071fff84dc67c8.tar.gz
Fix typo
Fix (minor) typo found in wireshark with lintian tools https://code.wireshark.org/review/#/c/18485/ Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'pidl')
-rw-r--r--pidl/lib/Parse/Yapp/Driver.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Yapp/Driver.pm b/pidl/lib/Parse/Yapp/Driver.pm
index d0dcbf54eb2..3652be06d5b 100644
--- a/pidl/lib/Parse/Yapp/Driver.pm
+++ b/pidl/lib/Parse/Yapp/Driver.pm
@@ -180,7 +180,7 @@ sub _CheckParams {
while(($prm,$value)=splice(@$inarray,0,2)) {
$prm=uc($prm);
exists($$checklist{$prm})
- or croak("Unknow parameter '$prm'");
+ or croak("Unknown parameter '$prm'");
ref($value) eq $$checklist{$prm}
or croak("Invalid value for parameter '$prm'");
$prm=unpack('@2A*',$prm);