summaryrefslogtreecommitdiff
path: root/ext/ByteLoader
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-09-03 12:08:23 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-09-03 12:08:23 +0000
commit113b9ccf36972dcace0731b141e2be76cf4d465d (patch)
tree62f4bf368ed29ca53a660352cd4ff37e5d88f119 /ext/ByteLoader
parent65016084af09f85fdd5829e6f87016680cf5024b (diff)
downloadperl-113b9ccf36972dcace0731b141e2be76cf4d465d.tar.gz
Avoid lvalue casts, from Enache.
p4raw-id: //depot/perl@21018
Diffstat (limited to 'ext/ByteLoader')
-rw-r--r--ext/ByteLoader/bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h
index d26448239a..667de7d979 100644
--- a/ext/ByteLoader/bytecode.h
+++ b/ext/ByteLoader/bytecode.h
@@ -32,7 +32,7 @@ typedef char *pvindex;
BGET_U32(arg); \
if (arg) { \
New(666, bstate->bs_pv.xpv_pv, arg, char); \
- bl_read(bstate->bs_fdata, (void*)bstate->bs_pv.xpv_pv, arg, 1);\
+ bl_read(bstate->bs_fdata, bstate->bs_pv.xpv_pv, arg, 1); \
bstate->bs_pv.xpv_len = arg; \
bstate->bs_pv.xpv_cur = arg - 1; \
} else { \