summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-02-27 12:29:36 +0000
committerDavid Mitchell <davem@iabyn.com>2009-03-25 22:49:32 +0000
commit315d4987fa7e85e5dc04452bda99f74cd6a41af2 (patch)
treead36167ba307f40124df1924ee479a6f329042c5 /proto.h
parent8b7af4fac5646e1d56a319f31b394d8493a2fd08 (diff)
downloadperl-315d4987fa7e85e5dc04452bda99f74cd6a41af2.tar.gz
Change variable name to fix debug build with PERL_OLD_COPY_ON_WRITE
p4raw-id: //depot/perl@33384 (cherry picked from commit bcfe2509c9c690ad84f6fd6d67302d2fbefea805)
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 8dbbc585dd..8e20d69315 100644
--- a/proto.h
+++ b/proto.h
@@ -5963,11 +5963,11 @@ PERL_CALLCONV char* Perl_my_atof2(pTHX_ const char *s, NV* value)
PERL_CALLCONV int Perl_my_socketpair(int family, int type, int protocol, int fd[2]);
PERL_CALLCONV int Perl_my_dirfd(pTHX_ DIR* dir);
#ifdef PERL_OLD_COPY_ON_WRITE
-PERL_CALLCONV SV* Perl_sv_setsv_cow(pTHX_ SV* dsv, SV* ssv)
+PERL_CALLCONV SV* Perl_sv_setsv_cow(pTHX_ SV* dstr, SV* sstr)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2);
#define PERL_ARGS_ASSERT_SV_SETSV_COW \
- assert(dsv); assert(ssv)
+ assert(dstr); assert(sstr)
#endif