diff options
author | Thies C. Arntzen <thies@php.net> | 2001-07-30 14:25:29 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-07-30 14:25:29 +0000 |
commit | 5f6e3db13f8a59d4a80a3fdf3cb1f60098280206 (patch) | |
tree | 4a3a39507d9398c01049323fbe29cb506f00961e /sapi | |
parent | 381d4c3143fec394fef534804f3d5034ef7523c5 (diff) | |
download | php-git-5f6e3db13f8a59d4a80a3fdf3cb1f60098280206.tar.gz |
compile fix
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache/mod_php4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 852505149a..9c2a86ddbc 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -597,7 +597,7 @@ static int send_parsed_php(request_rec * r) #if MEMORY_LIMIT { char mem_usage[ 32 ]; - ALS_FETCH() + TSRMLS_FETCH(); sprintf(mem_usage,"%u", (int) AG(allocated_memory_peak)); ap_table_setn(r->notes, "mod_php_memory_usage", ap_pstrdup(r->pool,mem_usage)); |