diff options
author | Dmitry Stogov <dmitry@php.net> | 2008-01-16 06:15:04 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2008-01-16 06:15:04 +0000 |
commit | a498d64cebd5ade7bd28b291506f5a1a14c3ad78 (patch) | |
tree | 61553ecb1b42d348802338568ea971733ebd8299 /ext | |
parent | d6806d5eadcf65642c727dc18cac7060018efb35 (diff) | |
download | php-git-a498d64cebd5ade7bd28b291506f5a1a14c3ad78.tar.gz |
Fixed wrong type cast
Diffstat (limited to 'ext')
-rw-r--r-- | ext/soap/soap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 589dabe05f..fb9209e762 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -404,7 +404,7 @@ ZEND_INI_MH(OnUpdateCacheMode) char *base = (char *) ts_resource(*((int *) mh_arg2)); #endif - p = (long*) (base+(size_t) mh_arg1); + p = (char*) (base+(size_t) mh_arg1); *p = (char)atoi(new_value); |