Change 31650 by [EMAIL PROTECTED] on 2007/07/24 13:05:54

        Subject: [EMAIL PROTECTED] vms.c realpath prototype mismatch
        From: "John E. Malmberg" <[EMAIL PROTECTED]>
        Date: Tue, 24 Jul 2007 07:56:39 -0500
        Message-ID: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/vms/vms.c#202 edit

Differences ...

==== //depot/perl/vms/vms.c#202 (text) ====
Index: perl/vms/vms.c
--- perl/vms/vms.c#201~31455~   2007-06-24 08:46:40.000000000 -0700
+++ perl/vms/vms.c      2007-07-24 06:05:54.000000000 -0700
@@ -12160,7 +12160,8 @@
 
 #ifdef HAS_SYMLINK
 static char *
-mp_do_vms_realpath(pTHX_ const char *filespec, char * rslt_spec, const int 
*utf8_fl);
+mp_do_vms_realpath(pTHX_ const char *filespec, char * rslt_spec,
+                  const int *utf8_fl);
 
 void
 vms_realpath_fromperl(pTHX_ CV *cv)
@@ -12273,7 +12274,8 @@
  * on OpenVMS.
  */
 static char *
-mp_do_vms_realpath(pTHX_ const char *filespec, char *outbuf, int *utf8_fl)
+mp_do_vms_realpath(pTHX_ const char *filespec, char *outbuf,
+                  const int *utf8_fl)
 {
     return realpath(filespec, outbuf);
 }
End of Patch.

Reply via email to