summaryrefslogtreecommitdiff
path: root/doop.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-05-31 21:37:31 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-05-31 21:37:31 +0000
commit12ae5dfcd4fd6f54af051c41b2e122532efce8d3 (patch)
tree2fe5b75e9e17313b9f06548e1f8abc866cbaee6d /doop.c
parentd6c1400008ffe28d0a765e9fe60d23dbeab89dda (diff)
downloadperl-12ae5dfcd4fd6f54af051c41b2e122532efce8d3.tar.gz
microperl changes from Simon Cozens; Makefile for microperl
written from scratch; few casts added as microperl compilation doesn't have all prototypes available. p4raw-id: //depot/cfgperl@6174
Diffstat (limited to 'doop.c')
-rw-r--r--doop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doop.c b/doop.c
index 4224b0ea13..c79b435171 100644
--- a/doop.c
+++ b/doop.c
@@ -851,7 +851,7 @@ Perl_do_vecset(pTHX_ SV *sv)
len = (offset + size + 7) / 8; /* required number of bytes */
if (len > targlen) {
s = (unsigned char*)SvGROW(targ, len + 1);
- (void)memzero(s + targlen, len - targlen + 1);
+ (void)memzero((char *)(s + targlen), len - targlen + 1);
SvCUR_set(targ, len);
}