plugin: make stub lookup signature match dlopen version

Change-Id: I64958f8f1a935adc07868362975447d0c0033084
Reviewed-on: https://go-review.googlesource.com/111716
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Zhou Peng 2018-05-05 13:08:17 +00:00 committed by Ian Lance Taylor
parent fbfbf03b28
commit 5b976d3783
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ package plugin
import "errors"
func lookup(p *Plugin, symName string) (interface{}, error) {
func lookup(p *Plugin, symName string) (Symbol, error) {
return nil, errors.New("plugin: not implemented")
}