]> granicus.if.org Git - php/commitdiff
Replace ssize_t with long, as Win32 lacks proper support for that type.
authorSascha Schumann <sas@php.net>
Sat, 12 May 2001 08:39:33 +0000 (08:39 +0000)
committerSascha Schumann <sas@php.net>
Sat, 12 May 2001 08:39:33 +0000 (08:39 +0000)
ext/session/mod_files.c

index 11a6ccb3401890d848212c7bcf8ef7432d6a2c52..8757715c33a151a17bac5d5dd7271ad5384f284c 100644 (file)
@@ -246,7 +246,7 @@ PS_CLOSE_FUNC(files)
 
 PS_READ_FUNC(files)
 {
-       ssize_t n;
+       long n;
        struct stat sbuf;
        PS_FILES_DATA;
 
@@ -276,7 +276,7 @@ PS_READ_FUNC(files)
 
 PS_WRITE_FUNC(files)
 {
-       ssize_t n;
+       long n;
        PS_FILES_DATA;
 
        ps_files_open(data, key);