From 948edd322b42e896226ac69693d11814527ddb1f Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Wed, 30 May 2001 18:33:46 +0000 Subject: [PATCH] should fix warnings under winblows. --- ext/session/mod_files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index bf0c74338d7..1f9cc699335 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -96,7 +96,7 @@ static char *ps_files_path_create(char *buf, size_t buflen, ps_files *data, cons memcpy(buf, data->basedir, data->basedir_len); n = data->basedir_len; buf[n++] = PHP_DIR_SEPARATOR; - for (i = 0; i < data->dirdepth; i++) { + for (i = 0; i < (int) data->dirdepth; i++) { buf[n++] = *p++; buf[n++] = PHP_DIR_SEPARATOR; } @@ -288,7 +288,7 @@ PS_WRITE_FUNC(files) * the existing data set. */ - if (vallen < data->st_size) + if ((int) vallen < data->st_size) ftruncate(data->fd, 0); #ifdef HAVE_PWRITE