summaryrefslogtreecommitdiff
path: root/main/streams/streams.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-04-13 20:12:54 +0000
committerMarcus Boerger <helly@php.net>2003-04-13 20:12:54 +0000
commit887d5ec9c1a058820a0b02ba6b52532c84dae3f2 (patch)
treefc106d69c86065dc7a95d23b3be18d115201960d /main/streams/streams.c
parent887dfeefecf0010c1ea9380789e5e5951f07e66c (diff)
downloadphp-git-887d5ec9c1a058820a0b02ba6b52532c84dae3f2.tar.gz
Speling
Diffstat (limited to 'main/streams/streams.c')
-rwxr-xr-xmain/streams/streams.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/streams/streams.c b/main/streams/streams.c
index e925aac7e5..2ab2619d24 100755
--- a/main/streams/streams.c
+++ b/main/streams/streams.c
@@ -238,7 +238,7 @@ fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persiste
}
/* }}} */
-int _php_stream_free_persistend(list_entry *le, void *pStream TSRMLS_DC)
+int _php_stream_free_persistent(list_entry *le, void *pStream TSRMLS_DC)
{
return le->ptr == pStream;
}
@@ -371,7 +371,7 @@ fprintf(stderr, "stream_free: %s:%p[%s] preserve_handle=%d release_cast=%d remov
#endif
if (stream->is_persistent) {
/* we don't work with *stream but need its value for comparison */
- zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) _php_stream_free_persistend, stream TSRMLS_CC);
+ zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) _php_stream_free_persistent, stream TSRMLS_CC);
}
}