diff options
author | Jon Parise <jon@php.net> | 2002-03-04 11:03:19 +0000 |
---|---|---|
committer | Jon Parise <jon@php.net> | 2002-03-04 11:03:19 +0000 |
commit | 9d43b9ecf51f09044289b9a95765c162cb1ccc8c (patch) | |
tree | 684d17f7d91fff69306028c23e1916bcbb5a783a /ext/session/session.c | |
parent | 57472aa318e1426643df032a27a8c7d01c4197ee (diff) | |
download | php-git-9d43b9ecf51f09044289b9a95765c162cb1ccc8c.tar.gz |
Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).
Diffstat (limited to 'ext/session/session.c')
-rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index f592969fde..4c667cf6dc 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -516,7 +516,7 @@ static char *_php_create_id(int *newlen TSRMLS_DC) fd = VCWD_OPEN(PS(entropy_file), O_RDONLY); if (fd >= 0) { - char buf[2048]; + unsigned char buf[2048]; int n; int to_read = PS(entropy_length); |