aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-08-23 13:13:27 -0400
committerRuss Cox <rsc@golang.org>2011-08-23 13:13:27 -0400
commit33e9d24ad9007d0dd4eec90b1c755aac7d1a9cbb (patch)
tree7478963713fb59dd0da8f5c4174ef5d1cacca867 /src/pkg/runtime/runtime.h
parentf6d536bea4efac42c5baee5188293ad7be2f70c3 (diff)
downloadgo-33e9d24ad9007d0dd4eec90b1c755aac7d1a9cbb.tar.xz
runtime: fix void warnings
Add -V flag to 6c command line to keep them fixed. R=ken2 CC=golang-dev https://golang.org/cl/4930046
Diffstat (limited to 'src/pkg/runtime/runtime.h')
-rw-r--r--src/pkg/runtime/runtime.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h
index 1e52d76ad0..84bab58772 100644
--- a/src/pkg/runtime/runtime.h
+++ b/src/pkg/runtime/runtime.h
@@ -630,8 +630,8 @@ void runtime·mapiterkeyvalue(struct hash_iter*, void*, void*);
Hmap* runtime·makemap_c(MapType*, int64);
Hchan* runtime·makechan_c(ChanType*, int64);
-void runtime·chansend(ChanType*, Hchan*, void*, bool*);
-void runtime·chanrecv(ChanType*, Hchan*, void*, bool*, bool*);
+void runtime·chansend(ChanType*, Hchan*, byte*, bool*);
+void runtime·chanrecv(ChanType*, Hchan*, byte*, bool*, bool*);
int32 runtime·chanlen(Hchan*);
int32 runtime·chancap(Hchan*);
bool runtime·showframe(Func*);