In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/dc9f3e4bb076a8cc6c89523b8cf6ffc3d6ab630e?hp=0f1abed3702060886f7934560cf68b0d693cb58a>
- Log ----------------------------------------------------------------- commit dc9f3e4bb076a8cc6c89523b8cf6ffc3d6ab630e Author: Jarkko Hietaniemi <[email protected]> Date: Mon Sep 1 17:22:03 2014 -0400 Ignore warning about unused result since it is desperation time. ----------------------------------------------------------------------- Summary of changes: dist/threads/threads.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs index 450efe1..5b44a38 100644 --- a/dist/threads/threads.xs +++ b/dist/threads/threads.xs @@ -718,7 +718,7 @@ S_ithread_create( int fd = PerlIO_fileno(Perl_error_log); if (fd >= 0) { /* If there's no error_log, we cannot scream about it missing. */ - PerlLIO_write(fd, PL_no_mem, strlen(PL_no_mem)); + PERL_UNUSED_RESULT(PerlLIO_write(fd, PL_no_mem, strlen(PL_no_mem))); } } my_exit(1); -- Perl5 Master Repository
