diff options
author | Marcus Boerger <helly@php.net> | 2003-04-13 20:30:57 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-04-13 20:30:57 +0000 |
commit | 75c8f37c0366cdce0ff5d023dd9036de288e6229 (patch) | |
tree | 57108fc0f2357d6f554613b628d74bca137f8e83 | |
parent | d2afc64feddec170d3580487e497557b2a59514d (diff) | |
download | php-git-75c8f37c0366cdce0ff5d023dd9036de288e6229.tar.gz |
Make it static
-rwxr-xr-x | main/streams/streams.c | 2 |
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; } |