diff options
Diffstat (limited to 'pkg/aflow/flow/patching/patching.go')
| -rw-r--r-- | pkg/aflow/flow/patching/patching.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/aflow/flow/patching/patching.go b/pkg/aflow/flow/patching/patching.go index ab3394f4e..a0b8d4a6c 100644 --- a/pkg/aflow/flow/patching/patching.go +++ b/pkg/aflow/flow/patching/patching.go @@ -10,6 +10,7 @@ import ( "github.com/google/syzkaller/pkg/aflow/action/crash" "github.com/google/syzkaller/pkg/aflow/action/kernel" "github.com/google/syzkaller/pkg/aflow/ai" + "github.com/google/syzkaller/pkg/aflow/tool/codeexpert" "github.com/google/syzkaller/pkg/aflow/tool/codesearcher" ) @@ -38,7 +39,7 @@ type Outputs struct { } func init() { - tools := codesearcher.Tools + tools := append([]aflow.Tool{codeexpert.Tool}, codesearcher.Tools...) aflow.Register[Inputs, Outputs]( ai.WorkflowPatching, |
