summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2001-10-19 19:55:36 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-10-19 19:55:36 +0000
commita0ae667081b123207d4d0f2b6e6b7a5597859a57 (patch)
tree335105ba5225605ea51e588a01773c1d6e6c1703 /sv.c
parent0af71dba73667d8fa3e845db4ca9d01e3491e5d5 (diff)
downloadperl-a0ae667081b123207d4d0f2b6e6b7a5597859a57.tar.gz
Fix gross win32 build issues
p4raw-id: //depot/perlio@12511
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 3afbd564e1..8ddbfa9f4d 100644
--- a/sv.c
+++ b/sv.c
@@ -9625,7 +9625,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
* their pointers copied. */
IV i;
- CLONE_PARAMS* param = (CLONE_PARAMS*) MALLOC(SIZEOF(CLONE_PARAMS));
+ CLONE_PARAMS* param = (CLONE_PARAMS*) malloc(sizeof(CLONE_PARAMS));
PerlInterpreter *my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
PERL_SET_THX(my_perl);
@@ -10335,3 +10335,4 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
}
#endif /* USE_ITHREADS */
+