summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-25 21:26:42 +0200
committerAnatol Belski <ab@php.net>2014-08-25 21:26:42 +0200
commitb9514bb8fd27e2d841bab3eb256fcbaa613aa049 (patch)
tree9cc82a1898cad7b2e92b4fe8362b02ab5ce3161a /ext/standard/html.c
parent28b7a033185478839c511551ce2344e459e7f880 (diff)
downloadphp-git-b9514bb8fd27e2d841bab3eb256fcbaa613aa049.tar.gz
master renames phase 6
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r--ext/standard/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c
index a9e5fbfe9d..04a4ea6c76 100644
--- a/ext/standard/html.c
+++ b/ext/standard/html.c
@@ -813,7 +813,7 @@ static inline int process_numeric_entity(const char **buf, unsigned *code_point)
/* many more are invalid, but that depends on whether it's HTML
* (and which version) or XML. */
- if (code_l > Z_I(0x10FFFF))
+ if (code_l > Z_L(0x10FFFF))
return FAILURE;
if (code_point != NULL)