summaryrefslogtreecommitdiff
path: root/src/pkg/exp/ogle/rruntime.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/exp/ogle/rruntime.go')
-rw-r--r--src/pkg/exp/ogle/rruntime.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/exp/ogle/rruntime.go b/src/pkg/exp/ogle/rruntime.go
index e234f3186..950418b53 100644
--- a/src/pkg/exp/ogle/rruntime.go
+++ b/src/pkg/exp/ogle/rruntime.go
@@ -236,9 +236,9 @@ type runtimeValues struct {
// indexes gathered from the remoteTypes recorded in a runtimeValues
// structure.
func fillRuntimeIndexes(runtime *runtimeValues, out *runtimeIndexes) {
- outv := reflect.Indirect(reflect.NewValue(out))
+ outv := reflect.Indirect(reflect.ValueOf(out))
outt := outv.Type()
- runtimev := reflect.Indirect(reflect.NewValue(runtime))
+ runtimev := reflect.Indirect(reflect.ValueOf(runtime))
// out contains fields corresponding to each runtime type
for i := 0; i < outt.NumField(); i++ {