diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-08-09 21:54:08 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-08-09 21:54:08 +0000 |
commit | d3fcec1f5f130b835b047ac0302818509dc560b9 (patch) | |
tree | e9eb93ca5c44ba7e51942e74da212b910675ae87 /op.c | |
parent | 8f42a9ec3299cd50ce2bd4c01cf806c12d9fb96d (diff) | |
download | perl-d3fcec1f5f130b835b047ac0302818509dc560b9.tar.gz |
A couple const's and a cast to get Sun CC to compile these files.
Perl, however, still will not build with the Sun CC.
p4raw-id: //depot/perl@28686
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7303,7 +7303,7 @@ Perl_ck_subr(pTHX_ OP *o) int optional = 0; I32 arg = 0; I32 contextclass = 0; - char *e = NULL; + const char *e = NULL; bool delete_op = 0; o->op_private |= OPpENTERSUB_HASTARG; |