Commit:    d8d5f9a9f50a98e3a44218f8672a6516a9e8dfe7
Author:    Gustavo Lopes <glo...@safelinq.com>         Mon, 23 Jul 2012 
16:46:28 +0200
Parents:   c052b9c99ac09069d3f7c8ca5904c499ec842336
Branches:  master

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

Log:
Fixed function name

Changed paths:
  M  ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp


Diff:
diff --git a/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp 
b/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp
index f2a39ba..61fb574 100644
--- a/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp
+++ b/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp
@@ -29,7 +29,7 @@ static inline RuleBasedBreakIterator 
*fetch_rbbi(BreakIterator_object *bio) {
        return (RuleBasedBreakIterator*)bio->biter;
 }
 
-static void _php_intlgregcal_constructor_body(INTERNAL_FUNCTION_PARAMETERS)
+static void _php_intlrbbi_constructor_body(INTERNAL_FUNCTION_PARAMETERS)
 {
        zval            *object         = getThis();
        char            *rules;
@@ -96,7 +96,7 @@ U_CFUNC PHP_METHOD(IntlRuleBasedBreakIterator, __construct)
 
        return_value = getThis();
        //changes this to IS_NULL (without first destroying) if there's an error
-       _php_intlgregcal_constructor_body(INTERNAL_FUNCTION_PARAM_PASSTHRU);
+       _php_intlrbbi_constructor_body(INTERNAL_FUNCTION_PARAM_PASSTHRU);
 
        if (Z_TYPE_P(return_value) == IS_NULL) {
                zend_object_store_ctor_failed(&orig_this TSRMLS_CC);


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

Reply via email to