summaryrefslogtreecommitdiff
path: root/ext/shmop
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-16 09:13:19 +0000
committerPierre Joye <pajoye@php.net>2010-09-16 09:13:19 +0000
commitaa0ed267a29b83099715c48f25bcbf9642bf7bb2 (patch)
treed834f5f091ed0a5681caa816a41c5de8f2eb1cb3 /ext/shmop
parent14e77486e06e21bfc29d80327bdb85ff7e1f0bfa (diff)
downloadphp-git-aa0ed267a29b83099715c48f25bcbf9642bf7bb2.tar.gz
- use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert
Diffstat (limited to 'ext/shmop')
-rw-r--r--ext/shmop/shmop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c
index c6e930c01e..7e057afae7 100644
--- a/ext/shmop/shmop.c
+++ b/ext/shmop/shmop.c
@@ -226,7 +226,7 @@ PHP_FUNCTION(shmop_open)
shmop->size = shm.shm_segsz;
- rsid = zend_list_insert(shmop, shm_type);
+ rsid = zend_list_insert(shmop, shm_type TSRMLS_CC);
RETURN_LONG(rsid);
err:
efree(shmop);