summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index 8ff229a930..db632e87f0 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1331,7 +1331,7 @@ static void increment_string(zval *str)
return;
}
- while(pos >= 0) {
+ while (pos >= 0) {
ch = s[pos];
if (ch >= 'a' && ch <= 'z') {
if (ch == 'z') {