Skip to content

Commit

Permalink
fix: fixed Concretizer.Call (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eagle941 authored Aug 31, 2023
1 parent 7356d0a commit a57bf5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abstractor/concretizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (c *Concretizer) DefineGadget(gadget GadgetDefinition) Gadget {
}

func (c *Concretizer) Call(gadget GadgetDefinition) []frontend.Variable {
return c.Call(gadget)
return c.DefineGadget(gadget).Call(gadget)
}

var _ API = &(Concretizer{})

0 comments on commit a57bf5e

Please sign in to comment.