diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-06 13:04:44 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-06 13:04:44 +0000 |
commit | c86a4f2e37a2a05a9cad736617540ad66d32fda9 (patch) | |
tree | 28ab8e6364b047ca81f9e6eb585ebbc594b8c682 /perl.c | |
parent | 59e235cb8daec2c43b3d74772367e9ea06c2ce9b (diff) | |
download | perl-c86a4f2e37a2a05a9cad736617540ad66d32fda9.tar.gz |
Replacing broken call to savepvn() with savepvs() to get threaded
Cygwin to compile again.
p4raw-id: //depot/perl@26671
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3053,7 +3053,7 @@ Perl_moreswitches(pTHX_ char *s) Safefree(PL_inplace); #if defined(__CYGWIN__) /* do backup extension automagically */ if (*(s+1) == '\0') { - PL_inplace = savepvn(STR_WITH_LEN(".bak")); + PL_inplace = savepvs(".bak"); return s+1; } #endif /* __CYGWIN__ */ |