diff options
author | foobar <sniper@php.net> | 2002-08-01 12:06:46 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-08-01 12:06:46 +0000 |
commit | 9d62cd7d45214acb81d2ade3aedb1ea5e6339ec4 (patch) | |
tree | 13da99fe8c8f154a7885bbc3e78e8b9d6818be00 | |
parent | 7d8c9d2f7fe6215ef621dc2e317264a8af03a509 (diff) | |
download | php-git-9d62cd7d45214acb81d2ade3aedb1ea5e6339ec4.tar.gz |
- Removed the DOS line endings
- Changed the '//' comment (this is C, not C++) to /* */
# Brad, use some editor which works..
-rw-r--r-- | ext/standard/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 5cd62767cb..4007df90d7 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -1693,7 +1693,7 @@ static void _phpi_pop(INTERNAL_FUNCTION_PARAMETERS, int off_the_end) zend_hash_get_current_key_ex(Z_ARRVAL_PP(stack), &key, &key_len, &index, 0, NULL); zend_hash_del_key_or_index(Z_ARRVAL_PP(stack), key, key_len, index, (key) ? HASH_DEL_KEY : HASH_DEL_INDEX); - // If we did a shift... re-index like it did before + /* If we did a shift... re-index like it did before */ if(!off_the_end) { HANDLE_BLOCK_INTERRUPTIONS(); { |