summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2005-07-24 10:31:55 -0500
committerNicholas Clark <nick@ccl4.org>2005-07-24 20:52:13 +0000
commitc46ec1f410f930810c1c3e760696951bc26b1248 (patch)
tree5cce01bf1f63ef23c441be69022e4c0088646840 /pp_ctl.c
parent7dc8f726ffdb362768c2563d86c4aba594ce406e (diff)
downloadperl-c46ec1f410f930810c1c3e760696951bc26b1248.tar.gz
blead help for VMS
From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <42E3FABB.1020900@mac.com> Date: Sun, 24 Jul 2005 15:31:55 -0500 p4raw-id: //depot/perl@25217
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index dc91e6bbcf..b511b0ef40 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -3143,7 +3143,7 @@ PP(pp_require)
I32 i;
#ifdef VMS
char *unixname;
- if ((unixname = tounixspec(name, Nullch)) != Nullch)
+ if ((unixname = tounixspec((char *)name, Nullch)) != Nullch)
#endif
{
namesv = NEWSV(806, 0);
@@ -3280,7 +3280,7 @@ PP(pp_require)
#else
# ifdef VMS
char *unixdir;
- if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
+ if ((unixdir = tounixpath((char *)dir, Nullch)) == Nullch)
continue;
sv_setpv(namesv, unixdir);
sv_catpv(namesv, unixname);