aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libgo/runtime/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/libgo/runtime/proc.c')
-rw-r--r--gcc-4.9/libgo/runtime/proc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc-4.9/libgo/runtime/proc.c b/gcc-4.9/libgo/runtime/proc.c
index 1bc0876d8..30516ad7d 100644
--- a/gcc-4.9/libgo/runtime/proc.c
+++ b/gcc-4.9/libgo/runtime/proc.c
@@ -1117,7 +1117,8 @@ runtime_needm(void)
if(runtime_needextram) {
// Can happen if C/C++ code calls Go from a global ctor.
// Can not throw, because scheduler is not initialized yet.
- runtime_write(2, "fatal error: cgo callback before cgo call\n",
+ int rv __attribute__((unused));
+ rv = runtime_write(2, "fatal error: cgo callback before cgo call\n",
sizeof("fatal error: cgo callback before cgo call\n")-1);
runtime_exit(1);
}