fixed issue #69

This commit is contained in:
llogiq 2015-05-25 22:50:41 +02:00
parent a67e0f6e2f
commit 73e3ef6d0e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ impl LintPass for PtrArg {
}
fn check_item(&mut self, cx: &Context, item: &Item) {
if let &ItemFn(ref decl, _, _, _, _) = &item.node {
if let &ItemFn(ref decl, _, _, _, _, _) = &item.node {
check_fn(cx, decl);
}
}