summaryrefslogtreecommitdiff
path: root/Zend/zend_list.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-07-20 13:01:30 +0000
committerAndi Gutmans <andi@php.net>1999-07-20 13:01:30 +0000
commitbf8c6dbd993c4d3bd9fbaf36b3ed068b28d25027 (patch)
treeb0812068cb85a7e06007df1450850515a28e14bc /Zend/zend_list.c
parente0e331967f59439f4a04aa279aaf0e27c16a3e13 (diff)
downloadphp-git-bf8c6dbd993c4d3bd9fbaf36b3ed068b28d25027.tar.gz
- Get rid of C++ comments
Diffstat (limited to 'Zend/zend_list.c')
-rw-r--r--Zend/zend_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_list.c b/Zend/zend_list.c
index 3f1d01327e..44992abd3e 100644
--- a/Zend/zend_list.c
+++ b/Zend/zend_list.c
@@ -48,7 +48,7 @@ static inline int zend_list_do_delete(HashTable *list,int id)
ELS_FETCH();
if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) {
-// printf("del(%d): %d->%d\n", id, le->refcount, le->refcount-1);
+/* printf("del(%d): %d->%d\n", id, le->refcount, le->refcount-1); */
if (--le->refcount<=0) {
return zend_hash_index_del(&EG(regular_list), id);
} else {
@@ -96,7 +96,7 @@ ZEND_API int zend_list_addref(int id)
ELS_FETCH();
if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) {
-// printf("add(%d): %d->%d\n", id, le->refcount, le->refcount+1);
+/* printf("add(%d): %d->%d\n", id, le->refcount, le->refcount+1); */
le->refcount++;
return SUCCESS;
} else {