summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-08-20 22:10:46 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-08-20 22:10:46 +0000
commite8ee3774ea4d90a4cf69272b6a6a59385df25262 (patch)
tree4163fb2cc38f301ce9d82771de86a9b54d6967ed /perl.c
parent0b250b9ef0d5134fdb23236140643970d9a3fbf5 (diff)
downloadperl-e8ee3774ea4d90a4cf69272b6a6a59385df25262.tar.gz
win32 tweaks
p4raw-id: //depot/perl@4014
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 32b9e2b133..4313742871 100644
--- a/perl.c
+++ b/perl.c
@@ -62,7 +62,7 @@ perl_alloc(void)
PerlInterpreter *my_perl;
/* New() needs interpreter, so call malloc() instead */
- my_perl = PerlMem_malloc(sizeof(PerlInterpreter));
+ my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
PERL_SET_INTERP(my_perl);
return my_perl;
}