Merge "Fix forwarding a vararg parameter" into rvc-dev

This commit is contained in:
TreeHugger Robot 2020-03-20 19:40:06 +00:00 committed by Android (Google) Code Review
commit fc5fafd902
1 changed files with 1 additions and 1 deletions

View File

@ -1281,7 +1281,7 @@ type baseModuleContext struct {
func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string { return b.bp.OtherModuleName(m) }
func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
b.bp.OtherModuleErrorf(m, fmt, args)
b.bp.OtherModuleErrorf(m, fmt, args...)
}
func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
return b.bp.OtherModuleDependencyTag(m)