Commit:    be1700d467a6875415c292f95040965fb359493c
Author:    Adam Harvey <ahar...@php.net>         Tue, 15 Jan 2013 10:08:26 +0800
Parents:   3ea2b73a30885c8fe308b7103442373cbb8d1543
Branches:  PHP-5.5

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=be1700d467a6875415c292f95040965fb359493c

Log:
Fix compile failure introduced by the fix for bug #46408.

Bugs:
https://bugs.php.net/46408

Changed paths:
  M  Zend/zend_operators.c


Diff:
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index 274893c..c8b868d 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -584,7 +584,7 @@ ZEND_API void _convert_to_cstring(zval *op 
ZEND_FILE_LINE_DC) /* {{{ */
                        break;
                }
                default:
-                       return _convert_to_string(op);
+                       _convert_to_string(op ZEND_FILE_LINE_CC);
        }
        Z_TYPE_P(op) = IS_STRING;
 }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to