diff options
author | 2024-12-16 23:27:17 +0000 | |
---|---|---|
committer | 2024-12-16 23:30:37 +0000 | |
commit | a4e89ba5054f2078e91e847de183453c303f1971 (patch) | |
tree | 45107faee713460525879d55901f57db7979555e /rust/fuzz.go | |
parent | c064b1b4cc6c6c5106fefbca3871e4af15bead29 (diff) |
Remove an unused PackageFuzzModule arg
Test: m nothing --no-skip-soong-tests
Change-Id: I9b1311e5e424b29ff93d4a3271e882008bed302a
Diffstat (limited to 'rust/fuzz.go')
-rw-r--r-- | rust/fuzz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/fuzz.go b/rust/fuzz.go index 1770d2e65..c4a4b4924 100644 --- a/rust/fuzz.go +++ b/rust/fuzz.go @@ -130,7 +130,7 @@ func (fuzzer *fuzzDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep } func (fuzz *fuzzDecorator) install(ctx ModuleContext) { - fuzz.fuzzPackagedModule = cc.PackageFuzzModule(ctx, fuzz.fuzzPackagedModule, pctx) + fuzz.fuzzPackagedModule = cc.PackageFuzzModule(ctx, fuzz.fuzzPackagedModule) installBase := "fuzz" |