diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2007-08-29 17:04:53 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-08-30 13:49:14 +0000 |
commit | fe5bfecd71ca735f83568f7bc2b9f22cc82e3d61 (patch) | |
tree | 1fbf396647db987f0166de4ee32bf04f3c6c5c25 /pp_sys.c | |
parent | 0cb1540ad85637e5abb7372876a8c85c855a7427 (diff) | |
download | perl-fe5bfecd71ca735f83568f7bc2b9f22cc82e3d61.tar.gz |
misc blead stuff
Message-ID: <46D617B5.3000002@iki.fi>
p4raw-id: //depot/perl@31765
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -476,7 +476,7 @@ PP(pp_die) } else { tmpsv = TOPs; - tmps = SvROK(tmpsv) ? NULL : SvPV_const(tmpsv, len); + tmps = SvROK(tmpsv) ? (const char *)NULL : SvPV_const(tmpsv, len); } if (!tmps || !len) { SV * const error = ERRSV; |