summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-08-26 14:32:22 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-08-26 14:32:22 +0200
commitd503a9ba1b647d7301de5326f3dab5a9176a98a4 (patch)
tree0c787fd4aa98f62b8814010e18a7886497a10547 /op.h
parent61f1d76ce428c9a39370be9d77a2a7f7dbc91779 (diff)
downloadperl-d503a9ba1b647d7301de5326f3dab5a9176a98a4.tar.gz
Use less constness in MAD code
This suppresses warnings, because sometimes the constness was taken away
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index e8ba8ef07a..96085640e0 100644
--- a/op.h
+++ b/op.h
@@ -646,7 +646,7 @@ struct loop {
struct madprop {
MADPROP* mad_next;
- const void *mad_val;
+ void *mad_val;
U32 mad_vlen;
/* short mad_count; */
char mad_key;