aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJann Horn <jannh@google.com>2020-11-19 17:40:48 +0100
committerAndersBroman <a.broman58@gmail.com>2020-11-19 18:16:37 +0000
commit785ef0f43d22745c5835e594735d3133497d6c18 (patch)
treeef67e2d6ae7566e3318710ae84e850c23a8d33c2 /tools
parent8c99f4de8d12602ce17341ff2dbfaeafe42d2b78 (diff)
checkAPIs: Fix typo
Fix the typo'd header name in the error message.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 0f438334ff..bbf71fb016 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -527,7 +527,7 @@ sub check_included_files($$)
if ( m#([<"]|/+)gcrypt\.h[>"]$# ) {
print STDERR "Warning: ".$filename.
" includes gcrypt.h directly. ".
- "Include wsutil/wsgrypt.h instead.\n";
+ "Include wsutil/wsgcrypt.h instead.\n";
last;
}
}