diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-08-26 14:32:22 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-08-26 14:32:22 +0200 |
commit | d503a9ba1b647d7301de5326f3dab5a9176a98a4 (patch) | |
tree | 0c787fd4aa98f62b8814010e18a7886497a10547 /op.h | |
parent | 61f1d76ce428c9a39370be9d77a2a7f7dbc91779 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |