diff options
author | Felipe Pena <felipe@php.net> | 2009-06-16 14:33:33 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-06-16 14:33:33 +0000 |
commit | f9bb99055e7546667731e0b23c0ce4c09a5efc4b (patch) | |
tree | 3e789d2898a49a4c55cd69948729ca93cd5ff8a4 /ext/reflection/php_reflection.c | |
parent | 10ee06ca48370da3f4858b563d0e0765b4059ee9 (diff) | |
download | php-git-f9bb99055e7546667731e0b23c0ce4c09a5efc4b.tar.gz |
- MFH: Fixed build (removed trailing comma) patch by Seiji Masugata <s.masugata at digicom.dnp.co.jp>
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 93fb1701fb..392615feb6 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -191,7 +191,7 @@ typedef enum { REF_TYPE_OTHER, /* Must be 0 */ REF_TYPE_FUNCTION, REF_TYPE_PARAMETER, - REF_TYPE_PROPERTY, + REF_TYPE_PROPERTY } reflection_type_t; /* Struct for reflection objects */ |