Commit:    7109f369e848384444a852cd0f0c591fd58a1bc4
Author:    Christopher Jones <s...@php.net>         Thu, 22 Aug 2013 09:05:52 
-0700
Parents:   f2ceb4963e1ecce4535d3a9b1e3dfa6960aff2c6
Branches:  PHP-5.4 PHP-5.5 master

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

Log:
Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards 
qualifiers from pointer target type"

Changed paths:
  M  ext/intl/resourcebundle/resourcebundle.c


Diff:
diff --git a/ext/intl/resourcebundle/resourcebundle.c 
b/ext/intl/resourcebundle/resourcebundle.c
index 6d39dfb..f5475fa 100644
--- a/ext/intl/resourcebundle/resourcebundle.c
+++ b/ext/intl/resourcebundle/resourcebundle.c
@@ -41,7 +41,7 @@ void resourcebundle_extract_value( zval *return_value, 
ResourceBundle_object *so
                case URES_STRING:
                        ufield = ures_getString( source->child, &ilen, 
&INTL_DATA_ERROR_CODE(source) );
                        INTL_METHOD_CHECK_STATUS(source, "Failed to retrieve 
string value");
-                       INTL_METHOD_RETVAL_UTF8(source, ufield, ilen, 0);
+                       INTL_METHOD_RETVAL_UTF8(source, (UChar *)ufield, ilen, 
0);
                        break;
 
                case URES_BINARY:


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

Reply via email to