diff options
author | Pierre Joye <pajoye@php.net> | 2010-09-16 09:13:19 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-09-16 09:13:19 +0000 |
commit | aa0ed267a29b83099715c48f25bcbf9642bf7bb2 (patch) | |
tree | d834f5f091ed0a5681caa816a41c5de8f2eb1cb3 /ext/pspell | |
parent | 14e77486e06e21bfc29d80327bdb85ff7e1f0bfa (diff) | |
download | php-git-aa0ed267a29b83099715c48f25bcbf9642bf7bb2.tar.gz |
- use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insert
Diffstat (limited to 'ext/pspell')
-rw-r--r-- | ext/pspell/pspell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index bc4af64094..ae7c173699 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -347,7 +347,7 @@ static PHP_FUNCTION(pspell_new) } manager = to_pspell_manager(ret); - ind = zend_list_insert(manager, le_pspell); + ind = zend_list_insert(manager, le_pspell TSRMLS_CC); RETURN_LONG(ind); } /* }}} */ |