diff options
author | Reeze Xia <reeze@php.net> | 2015-03-14 14:06:57 +0800 |
---|---|---|
committer | Reeze Xia <reeze@php.net> | 2015-03-14 14:06:57 +0800 |
commit | 7409fd4bf73912b0bf3e5fb2e9bf613cc302c735 (patch) | |
tree | dad85c2a4f496a709b6a737a8f494f04d3e59a7a /ext/reflection/php_reflection.c | |
parent | 9420a2a5b0079ddc9ff6db31f7ebcf3e869a0717 (diff) | |
download | php-git-7409fd4bf73912b0bf3e5fb2e9bf613cc302c735.tar.gz |
Fix folder mark
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 4ab0559eda..bed3823a4e 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -217,7 +217,7 @@ typedef struct { zend_object zo; } reflection_object; -static inline reflection_object *reflection_object_from_obj(zend_object *obj) /* {{{ */ { +static inline reflection_object *reflection_object_from_obj(zend_object *obj) { return (reflection_object*)((char*)(obj) - XtOffsetOf(reflection_object, zo)); } @@ -235,6 +235,7 @@ static zval *_default_load_entry(zval *object, char *name, size_t name_len) /* { } return value; } +/* }}} */ static void _default_get_entry(zval *object, char *name, int name_len, zval *return_value) /* {{{ */ { |