diff options
author | Jani Taskinen <jani@php.net> | 2007-11-26 10:59:04 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-11-26 10:59:04 +0000 |
commit | dcd3b197e7c3dd24b8fd22ff5cacfedf2152bf56 (patch) | |
tree | d12037988ae8f9d92fe6ad2d6f2475daa2b41c34 /ext/pcre/php_pcre.c | |
parent | 7cf9dcc81c31dada439807767be5b9daf7126fac (diff) | |
download | php-git-dcd3b197e7c3dd24b8fd22ff5cacfedf2152bf56.tar.gz |
MFH:- Fixed bug #43365 (Several enums have trailing commas)
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index ec36ac4763..7edd0c4f0a 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -48,7 +48,7 @@ enum { PHP_PCRE_INTERNAL_ERROR, PHP_PCRE_BACKTRACK_LIMIT_ERROR, PHP_PCRE_RECURSION_LIMIT_ERROR, - PHP_PCRE_BAD_UTF8_ERROR, + PHP_PCRE_BAD_UTF8_ERROR }; |