diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-06 02:36:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-06 02:36:53 +0000 |
commit | ed80029104dcdb024887a87b32b2ea5b06b6e3fd (patch) | |
tree | fc9654fc3743f5dfbde82f6eb5729519d41f568d /thread.h | |
parent | 72d9ac97030fabd6670604eb7c98688c37875b99 (diff) | |
download | perl-ed80029104dcdb024887a87b32b2ea5b06b6e3fd.tar.gz |
make die/warn and other diagnostics go to wherever STDERR happens
to point at; change places that meant Perl_debug_log rather than
PerlIO_stderr()
p4raw-id: //depot/perl@4302
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -314,7 +314,7 @@ struct perl_thread *getTHR (void); #define ThrSETSTATE(t, s) STMT_START { \ (t)->flags &= ~THRf_STATE_MASK; \ (t)->flags |= (s); \ - DEBUG_S(PerlIO_printf(PerlIO_stderr(), \ + DEBUG_S(PerlIO_printf(Perl_debug_log, \ "thread %p set to state %d\n", (t), (s))); \ } STMT_END |