diff options
-rw-r--r-- | NetWare/nwperlhost.h | 2 | ||||
-rw-r--r-- | NetWare/nwperlsys.h | 2 | ||||
-rw-r--r-- | iperlsys.h | 2 | ||||
-rw-r--r-- | win32/perlhost.h | 2 | ||||
-rw-r--r-- | wince/perlhost.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/NetWare/nwperlhost.h b/NetWare/nwperlhost.h index a18436e402..ff3fdee158 100644 --- a/NetWare/nwperlhost.h +++ b/NetWare/nwperlhost.h @@ -890,7 +890,7 @@ PerlLIOUnlink(struct IPerlLIO* piPerl, const char *filename) } int -PerlLIOUtime(struct IPerlLIO* piPerl, char *filename, struct utimbuf *times) +PerlLIOUtime(struct IPerlLIO* piPerl, const char *filename, struct utimbuf *times) { return nw_utime(filename, times); } diff --git a/NetWare/nwperlsys.h b/NetWare/nwperlsys.h index 5863e85751..ed1b632e11 100644 --- a/NetWare/nwperlsys.h +++ b/NetWare/nwperlsys.h @@ -780,7 +780,7 @@ PerlLIOUnlink(struct IPerlLIO* piPerl, const char *filename) } int -PerlLIOUtime(struct IPerlLIO* piPerl, char *filename, struct utimbuf *times) +PerlLIOUtime(struct IPerlLIO* piPerl, const char *filename, struct utimbuf *times) { return nw_utime(filename, times); } diff --git a/iperlsys.h b/iperlsys.h index 8380c5ba77..bcce7197f9 100644 --- a/iperlsys.h +++ b/iperlsys.h @@ -632,7 +632,7 @@ typedef int (*LPLIONameStat)(struct IPerlLIO*, const char*, typedef char* (*LPLIOTmpnam)(struct IPerlLIO*, char*); typedef int (*LPLIOUmask)(struct IPerlLIO*, int); typedef int (*LPLIOUnlink)(struct IPerlLIO*, const char*); -typedef int (*LPLIOUtime)(struct IPerlLIO*, char*, struct utimbuf*); +typedef int (*LPLIOUtime)(struct IPerlLIO*, const char*, struct utimbuf*); typedef int (*LPLIOWrite)(struct IPerlLIO*, int, const void*, unsigned int); diff --git a/win32/perlhost.h b/win32/perlhost.h index c8a0406b6c..24ed2b79ee 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -1065,7 +1065,7 @@ PerlLIOUnlink(struct IPerlLIO* piPerl, const char *filename) } int -PerlLIOUtime(struct IPerlLIO* piPerl, char *filename, struct utimbuf *times) +PerlLIOUtime(struct IPerlLIO* piPerl, const char *filename, struct utimbuf *times) { return win32_utime(filename, times); } diff --git a/wince/perlhost.h b/wince/perlhost.h index dae5a86408..bcf2b4f851 100644 --- a/wince/perlhost.h +++ b/wince/perlhost.h @@ -1073,7 +1073,7 @@ PerlLIOUnlink(struct IPerlLIO* piPerl, const char *filename) } int -PerlLIOUtime(struct IPerlLIO* piPerl, char *filename, struct utimbuf *times) +PerlLIOUtime(struct IPerlLIO* piPerl, const char *filename, struct utimbuf *times) { return win32_utime(filename, times); } |