diff options
author | Steve Hay <SteveHay@planit.com> | 2008-02-13 12:05:49 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-02-13 12:05:49 +0000 |
commit | 16bf6295de74199eccc4e88487e3c499c94de5d3 (patch) | |
tree | a3082942534e0da5b35475ddd428c784dd051cfd /proto.h | |
parent | 6ba536972b10525e985c307bc39be08fad8ed272 (diff) | |
download | perl-16bf6295de74199eccc4e88487e3c499c94de5d3.tar.gz |
Correct another variable name in embed.fnc
(Fixes my DEBUGGING builds on Win32)
p4raw-id: //depot/perl@33298
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ START_EXTERN_C #if defined(PERL_IMPLICIT_SYS) -PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPerlMem *ipMS, struct IPerlMem *ipMP, struct IPerlEnv *ipE, struct IPerlStdIO *ipStd, struct IPerlLIO *ipLio, struct IPerlDir *ipD, struct IPerlSock *ipS, struct IPerlProc *ipP) +PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPerlMem *ipMS, struct IPerlMem *ipMP, struct IPerlEnv *ipE, struct IPerlStdIO *ipStd, struct IPerlLIO *ipLIO, struct IPerlDir *ipD, struct IPerlSock *ipS, struct IPerlProc *ipP) __attribute__nonnull__(1) __attribute__nonnull__(2) __attribute__nonnull__(3) @@ -30,7 +30,7 @@ PERL_CALLCONV PerlInterpreter* perl_alloc_using(struct IPerlMem *ipM, struct IPe __attribute__nonnull__(8) __attribute__nonnull__(9); #define PERL_ARGS_ASSERT_PERL_ALLOC_USING \ - assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLio); assert(ipD); assert(ipS); assert(ipP) + assert(ipM); assert(ipMS); assert(ipMP); assert(ipE); assert(ipStd); assert(ipLIO); assert(ipD); assert(ipS); assert(ipP) #endif PERL_CALLCONV PerlInterpreter* perl_alloc(void); |