Change 32947 by [EMAIL PROTECTED] on 2008/01/11 10:37:00

        Subject: [PATCH ext/POSIX/POSIX.xs]
        From: "Robin Barker" <[EMAIL PROTECTED]>
        Date: Thu, 10 Jan 2008 18:50:12 -0000
        Message-ID: <[EMAIL PROTECTED]>
        
        More consting.

Affected files ...

... //depot/perl/ext/POSIX/POSIX.xs#150 edit

Differences ...

==== //depot/perl/ext/POSIX/POSIX.xs#150 (text) ====
Index: perl/ext/POSIX/POSIX.xs
--- perl/ext/POSIX/POSIX.xs#149~32703~  2007-12-22 08:17:01.000000000 -0800
+++ perl/ext/POSIX/POSIX.xs     2008-01-11 02:37:00.000000000 -0800
@@ -386,7 +386,7 @@
 #endif
 
 static int
-not_here(char *s)
+not_here(const char *s)
 {
     croak("POSIX::%s not implemented on this architecture", s);
     return -1;
@@ -1662,7 +1662,7 @@
 
 void
 strtoul(str, base = 0)
-       char *          str
+       const char *    str
        int             base
     PREINIT:
        unsigned long num;
End of Patch.

Reply via email to