summaryrefslogtreecommitdiff
path: root/android/singleton_module.go
diff options
context:
space:
mode:
author Spandan Das <spandandas@google.com> 2024-09-09 22:57:10 +0000
committer Spandan Das <spandandas@google.com> 2024-09-09 22:58:11 +0000
commitca9ccec822b26a2dbb9437b209e27240b4bafeb3 (patch)
tree7d7112b787b1e3bb98c1a5ebb92a68e66b440bf5 /android/singleton_module.go
parentaa8ceca851efaf057df5472dc95fe8eb4b0496e8 (diff)
Remove extra space in error message
Change-Id: I45420afc37736ec8fecd0c489c35c14b377a71a5 Test: N/A
Diffstat (limited to 'android/singleton_module.go')
-rw-r--r--android/singleton_module.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/singleton_module.go b/android/singleton_module.go
index 235173809..43028e857 100644
--- a/android/singleton_module.go
+++ b/android/singleton_module.go
@@ -68,7 +68,7 @@ type SingletonModuleBase struct {
func (smb *SingletonModuleBase) GenerateBuildActions(ctx blueprint.ModuleContext) {
smb.lock.Lock()
if smb.variant != "" {
- ctx.ModuleErrorf("GenerateAndroidBuildActions already called for variant %q, SingletonModules can only have one variant", smb.variant)
+ ctx.ModuleErrorf("GenerateAndroidBuildActions already called for variant %q, SingletonModules can only have one variant", smb.variant)
}
smb.variant = ctx.ModuleSubDir()
smb.lock.Unlock()