summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index 274a99bd47..9d3b9fdb68 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -91,7 +91,7 @@ static inline int is_numeric_string(char *str, int length, long *lval, double *d
if (length>16) {
register char *ptr=str, *end=str+length;
- while(ptr<end) {
+ while (ptr<end) {
switch(*ptr++) {
case 'e':
case 'E':