Skip to content

Commit a799531

Browse files
committed
Fix variable name.
1 parent 68c3ee7 commit a799531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindgen/ir/item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ impl Item {
787787

788788
match *self.kind() {
789789
ItemKind::Var(ref var) => var.name().to_owned(),
790-
ItemKind::MacroDef(ref var) => var.name().to_owned(),
790+
ItemKind::MacroDef(ref macro_def) => macro_def.name().to_owned(),
791791
ItemKind::Module(ref module) => {
792792
module.name().map(ToOwned::to_owned).unwrap_or_else(|| {
793793
format!("_bindgen_mod_{}", self.exposed_id(ctx))

0 commit comments

Comments
 (0)