Change 33298 by [EMAIL PROTECTED] on 2008/02/13 12:05:49
Correct another variable name in embed.fnc
(Fixes my DEBUGGING builds on Win32)
Affected files ...
... //depot/perl/embed.fnc#584 edit
... //depot/perl/proto.h#919 edit
Differences ...
==== //depot/perl/embed.fnc#584 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#583~33290~ 2008-02-12 04:52:14.000000000 -0800
+++ perl/embed.fnc 2008-02-13 04:05:49.000000000 -0800
@@ -50,7 +50,7 @@
|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
==== //depot/perl/proto.h#919 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#918~33291~ 2008-02-12 05:15:20.000000000 -0800
+++ perl/proto.h 2008-02-13 04:05:49.000000000 -0800
@@ -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 @@
__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);
End of Patch.