diff options
Diffstat (limited to 'dist/threads')
-rw-r--r-- | dist/threads/threads.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs index 450efe1653..5b44a38ef0 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); |