diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-23 09:00:28 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-23 09:00:28 +0000 |
commit | 8d3a710fc8101f114e42e18c7eae4598e4c21195 (patch) | |
tree | 5f81ac5b7db75281a40f9ec2b24d10fcafccd290 /doio.c | |
parent | 1b6737cc10a847650f574c35f419cbd680a5a5ef (diff) | |
download | perl-8d3a710fc8101f114e42e18c7eae4598e4c21195.tar.gz |
More bcc32 compiler warnings to silence
("Suspicious pointer conversion")
p4raw-id: //depot/perl@24946
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1841,7 +1841,7 @@ nothing in the core. APPLY_TAINT_PROPER(); tot = sp - mark; while (++mark <= sp) { - const char *name = SvPV_nolen_const(*mark); + char *name = SvPV_nolen_const(*mark); APPLY_TAINT_PROPER(); if (PerlLIO_utime(name, utbufp)) tot--; |