diff options
author | Wez Furlong <wez@php.net> | 2003-04-04 21:09:25 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-04-04 21:09:25 +0000 |
commit | c64256e67178feef1b44493baf27f47eb147b502 (patch) | |
tree | bcc3dd1ea44e93e9a7a367029159ffef4e1c93c0 | |
parent | a65564f0fa66d95b6b2cccd690a516df257cac7d (diff) | |
download | php-git-c64256e67178feef1b44493baf27f47eb147b502.tar.gz |
Warning fix
-rw-r--r-- | ext/standard/streamsfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index e524f3a8f9..2ad8ddd944 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -343,13 +343,13 @@ PHP_FUNCTION(stream_get_transports) { HashTable *stream_xport_hash; char *stream_xport; - int key_flags, stream_xport_len; + int stream_xport_len; if (ZEND_NUM_ARGS() != 0) { WRONG_PARAM_COUNT; } - if (stream_xport_hash = php_stream_xport_get_hash()) { + if ((stream_xport_hash = php_stream_xport_get_hash())) { array_init(return_value); zend_hash_internal_pointer_reset(stream_xport_hash); while (zend_hash_get_current_key_ex(stream_xport_hash, |