summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-04-13 20:30:57 +0000
committerMarcus Boerger <helly@php.net>2003-04-13 20:30:57 +0000
commit75c8f37c0366cdce0ff5d023dd9036de288e6229 (patch)
tree57108fc0f2357d6f554613b628d74bca137f8e83
parentd2afc64feddec170d3580487e497557b2a59514d (diff)
downloadphp-git-75c8f37c0366cdce0ff5d023dd9036de288e6229.tar.gz
Make it static
-rwxr-xr-xmain/streams/streams.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/streams.c b/main/streams/streams.c
index 2ab2619d24..a5e742dd7c 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_persistent(list_entry *le, void *pStream TSRMLS_DC)
+static int _php_stream_free_persistent(list_entry *le, void *pStream TSRMLS_DC)
{
return le->ptr == pStream;
}