Skip to content

Commit

Permalink
AP_Scripting: generator: fix dependancy start and end miss-match
Browse files Browse the repository at this point in the history
  • Loading branch information
IamPete1 authored and peterbarker committed Aug 7, 2023
1 parent 9374b37 commit 63666ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_Scripting/generator/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1709,8 +1709,8 @@ void emit_userdata_fields() {
emit_userdata_field(node, field);
field = field->next;
}
end_dependency(source, node->dependency);
}
end_dependency(source, node->dependency);
node = node->next;
}
}
Expand Down

0 comments on commit 63666ea

Please sign in to comment.