diff options
author | 2024-05-07 17:49:10 +0000 | |
---|---|---|
committer | 2024-05-07 17:49:10 +0000 | |
commit | 3f01580c04bfe37c920e247015cce93cff2451c0 (patch) | |
tree | b2165cd64e2876d8fa4c60bd322de81364143aed /android/singleton.go | |
parent | 0d4a9ca79225bac10e4b62a663ee0cd09e3b314d (diff) | |
parent | a963b94cde194257fa67ce9596026a4da2fe7523 (diff) |
Merge "Make the enabled property configurable" into main
Diffstat (limited to 'android/singleton.go')
-rw-r--r-- | android/singleton.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/singleton.go b/android/singleton.go index 76df1ebba..d364384e2 100644 --- a/android/singleton.go +++ b/android/singleton.go @@ -284,5 +284,5 @@ func (s *singletonContextAdaptor) moduleProvider(module blueprint.Module, provid } func (s *singletonContextAdaptor) OtherModulePropertyErrorf(module Module, property string, format string, args ...interface{}) { - s.blueprintSingletonContext().OtherModulePropertyErrorf(module, property, format, args) + s.blueprintSingletonContext().OtherModulePropertyErrorf(module, property, format, args...) } |