]> git.pld-linux.org Git - packages/gcc.git/blob - libgo-werror.patch
- fix typo
[packages/gcc.git] / libgo-werror.patch
1 --- gcc-4.7.1/libgo/runtime/print.c
2 +++ gcc-4.7.1/libgo/runtime/print.c
3 @@ -17,7 +17,8 @@
4         G* g = runtime_g();
5  
6         if(g == nil || g->writebuf == nil) {
7 -               runtime_write(2, v, n);
8 +               ssize_t bytesWritten = runtime_write(2, v, n);
9 +               (void)bytesWritten;
10                 return;
11         }
12         
This page took 0.038391 seconds and 3 git commands to generate.