summaryrefslogtreecommitdiff
path: root/Zend/zend_list.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-05-20 20:25:20 +0000
committerAndi Gutmans <andi@php.net>2001-05-20 20:25:20 +0000
commite2f12eb0e5cc2eb166c4fe084c2654e089898242 (patch)
treea8365c8e4b08d0f5094fe4562d821d78a1ef73ef /Zend/zend_list.h
parentc1164ad5bf728c8fc89f9356e2f38a5c7194c392 (diff)
downloadphp-git-e2f12eb0e5cc2eb166c4fe084c2654e089898242.tar.gz
- Whitespace and change the name of the macro to something more verbose
ZEND_GET_RESOURCE_ID(...)
Diffstat (limited to 'Zend/zend_list.h')
-rw-r--r--Zend/zend_list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_list.h b/Zend/zend_list.h
index 7509dbf704..942236cedd 100644
--- a/Zend/zend_list.h
+++ b/Zend/zend_list.h
@@ -102,8 +102,8 @@ extern ZEND_API int le_index_ptr; /* list entry type for index pointers */
#define ZEND_REGISTER_RESOURCE(rsrc_result, rsrc_pointer, rsrc_type) \
zend_register_resource(rsrc_result, rsrc_pointer, rsrc_type);
-#define ZEND_GET_LE(le_id, le_type_name) \
- if(le_id == 0) { \
+#define ZEND_GET_RESOURCE_ID(le_id, le_type_name) \
+ if (le_id == 0) { \
le_id = zend_fetch_list_dtor_id(le_type_name); \
}