Correct another variable name in embed.fnc
Steve Hay [Wed, 13 Feb 2008 12:05:49 +0000 (12:05 +0000)]
(Fixes my DEBUGGING builds on Win32)

p4raw-id: //depot/perl@33298

embed.fnc
proto.h

index a8b2819..8d6dda2 100644 (file)
--- 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 (file)
--- 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);