From: Steve Hay Date: Wed, 13 Feb 2008 12:05:49 +0000 (+0000) Subject: Correct another variable name in embed.fnc X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=16bf6295de74199eccc4e88487e3c499c94de5d3;p=p5sagit%2Fp5-mst-13.2.git Correct another variable name in embed.fnc (Fixes my DEBUGGING builds on Win32) p4raw-id: //depot/perl@33298 --- diff --git a/embed.fnc b/embed.fnc index a8b2819..8d6dda2 100644 --- a/embed.fnc +++ b/embed.fnc @@ -50,7 +50,7 @@ Ano |PerlInterpreter*|perl_alloc_using \ |NN struct IPerlMem *ipMP \ |NN struct IPerlEnv *ipE \ |NN struct IPerlStdIO *ipStd \ - |NN struct IPerlLIO *ipLio \ + |NN struct IPerlLIO *ipLIO \ |NN struct IPerlDir *ipD \ |NN struct IPerlSock *ipS \ |NN struct IPerlProc *ipP diff --git a/proto.h b/proto.h index e62bc6a..86beec7 100644 --- a/proto.h +++ b/proto.h @@ -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);