summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/reflect.goc
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/reflect.goc')
-rw-r--r--src/pkg/runtime/reflect.goc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/reflect.goc b/src/pkg/runtime/reflect.goc
index a2e3c6ee1..71d648266 100644
--- a/src/pkg/runtime/reflect.goc
+++ b/src/pkg/runtime/reflect.goc
@@ -75,7 +75,7 @@ func chansend(ch *byte, val *byte, pres *bool) {
}
func chanrecv(ch *byte, val *byte, pres *bool) {
- runtime·chanrecv((Hchan*)ch, val, pres);
+ runtime·chanrecv((Hchan*)ch, val, pres, nil);
}
func chanclose(ch *byte) {