From 7409fd4bf73912b0bf3e5fb2e9bf613cc302c735 Mon Sep 17 00:00:00 2001 From: Reeze Xia Date: Sat, 14 Mar 2015 14:06:57 +0800 Subject: [PATCH] Fix folder mark --- ext/reflection/php_reflection.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) /* {{{ */ { -- 2.40.0