diff options
| author | Zhou Peng <p@ctriple.cn> | 2018-05-05 13:08:17 +0000 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2018-05-08 17:09:05 +0000 |
| commit | 5b976d3783cc7e626a384a4d57b4a57decea05ba (patch) | |
| tree | 9ae30a2a14e3e8973f113a5c111600017d93753c /src/plugin/plugin_stubs.go | |
| parent | fbfbf03b2811eb3611e4677da6cdb7c099922e6e (diff) | |
| download | go-5b976d3783cc7e626a384a4d57b4a57decea05ba.tar.xz | |
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>
Diffstat (limited to 'src/plugin/plugin_stubs.go')
| -rw-r--r-- | src/plugin/plugin_stubs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin/plugin_stubs.go b/src/plugin/plugin_stubs.go index f0bcb4a3bd..40a41643b1 100644 --- a/src/plugin/plugin_stubs.go +++ b/src/plugin/plugin_stubs.go @@ -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") } |
