diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-12-08 21:50:53 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-12-27 12:27:28 +0100 |
commit | d183113e9d20c519bfcbd56d436133db3e6a9ec1 (patch) | |
tree | c429ce5d453e3fec37b83080b961c22da42c9da7 /util.c | |
parent | 9de9bf34317749e7963a8f3864bd26ca879c1a5b (diff) | |
download | perl-d183113e9d20c519bfcbd56d436133db3e6a9ec1.tar.gz |
Fix a typo introduced in Nov 2008 by commit 4ee3916907333148.
One use of dSAVE_ERRNO was mistyped as dSAVED_ERRNO, but as it was in the
sfio-only code it was not spotted.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1345,7 +1345,7 @@ Perl_write_to_stderr(pTHX_ SV* msv) else { #ifdef USE_SFIO /* SFIO can really mess with your errno */ - dSAVED_ERRNO; + dSAVE_ERRNO; #endif PerlIO * const serr = Perl_error_log; |