diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2013-08-10 14:35:30 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2013-08-10 14:35:30 +0900 |
commit | f2b57251157c7408eca716d6d5e98eee34ba54f0 (patch) | |
tree | 68a2abe3f810fe09d73d6655c118916dd39af4e5 /ext/session/php_session.h | |
parent | 554021d21e1b2517313a377676260c188152c2eb (diff) | |
download | php-git-f2b57251157c7408eca716d6d5e98eee34ba54f0.tar.gz |
Remove compile warning of commit 554021d21e1b2517313a377676260c188152c2eb
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index ba3420ecee..4307e6afc5 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -180,7 +180,7 @@ typedef struct _php_ps_globals { double rfc1867_min_freq; /* session.upload_progress.min_freq */ zend_bool use_strict_mode; /* whether or not PHP accepts unknown session ids */ - char session_data_hash[16]; /* binary MD5 hash length */ + unsigned char session_data_hash[16]; /* binary MD5 hash length */ } php_ps_globals; typedef php_ps_globals zend_ps_globals; |