summarylogtreecommitdiffstats
path: root/gcc-4.7.1-libgo-write.patch
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7.1-libgo-write.patch')
-rw-r--r--gcc-4.7.1-libgo-write.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc-4.7.1-libgo-write.patch b/gcc-4.7.1-libgo-write.patch
new file mode 100644
index 000000000000..a7be83fdad81
--- /dev/null
+++ b/gcc-4.7.1-libgo-write.patch
@@ -0,0 +1,13 @@
+diff -Naur gcc-4.7.1-orig/libgo/runtime/print.c gcc-4.7.1/libgo/runtime/print.c
+--- gcc-4.7.1-orig/libgo/runtime/print.c 2012-05-26 04:22:14.000000000 +1000
++++ gcc-4.7.1/libgo/runtime/print.c 2012-06-16 15:06:28.553138502 +1000
+@@ -17,7 +17,8 @@
+ G* g = runtime_g();
+
+ if(g == nil || g->writebuf == nil) {
+- runtime_write(2, v, n);
++ ssize_t bytesWritten = runtime_write(2, v, n);
++ (void)bytesWritten;
+ return;
+ }
+