diff options
author | 2024-09-09 22:57:10 +0000 | |
---|---|---|
committer | 2024-09-09 22:58:11 +0000 | |
commit | ca9ccec822b26a2dbb9437b209e27240b4bafeb3 (patch) | |
tree | 7d7112b787b1e3bb98c1a5ebb92a68e66b440bf5 /android/singleton_module.go | |
parent | aa8ceca851efaf057df5472dc95fe8eb4b0496e8 (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.go | 2 |
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() |