diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2013-05-29 14:34:22 -0700 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2013-05-29 14:34:22 -0700 |
| commit | e02add77fccbff3930d2abe1734ce34c9e562782 (patch) | |
| tree | 955196b87cff8d38be253594c9bef4e4180707ea /ext/opcache/zend_shared_alloc.h | |
| parent | 80c13e99653ce2638700b6b0c32f8cf732213d75 (diff) | |
| download | php-git-e02add77fccbff3930d2abe1734ce34c9e562782.tar.gz | |
Use size_t everywhere instead
Diffstat (limited to 'ext/opcache/zend_shared_alloc.h')
| -rw-r--r-- | ext/opcache/zend_shared_alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.h b/ext/opcache/zend_shared_alloc.h index 40f1f89ec0..e94ecab9b3 100644 --- a/ext/opcache/zend_shared_alloc.h +++ b/ext/opcache/zend_shared_alloc.h @@ -117,7 +117,7 @@ extern zend_smm_shared_globals *smm_shared_globals; #define SHARED_ALLOC_REATTACHED (SUCCESS+1) -int zend_shared_alloc_startup(long requested_size); +int zend_shared_alloc_startup(size_t requested_size); void zend_shared_alloc_shutdown(void); /* allocate shared memory block */ |
