summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-12-08 21:50:53 +0100
committerNicholas Clark <nick@ccl4.org>2013-12-27 12:27:28 +0100
commitd183113e9d20c519bfcbd56d436133db3e6a9ec1 (patch)
treec429ce5d453e3fec37b83080b961c22da42c9da7 /util.c
parent9de9bf34317749e7963a8f3864bd26ca879c1a5b (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 3bb368f913..af7cdadcb3 100644
--- a/util.c
+++ b/util.c
@@ -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;