diff options
author | Xinchen Hui <laruence@php.net> | 2014-06-28 00:02:50 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-06-28 00:02:50 +0800 |
commit | 4fbaddb4f8b041769bea7efdd12313641387bd14 (patch) | |
tree | 7e3a8f8fd232dd52e0a666ef5b9e9b27734ddde1 /ext/intl/intl_error.h | |
parent | f609d8c1c677d03d9ae380480ae72383c5a98106 (diff) | |
download | php-git-4fbaddb4f8b041769bea7efdd12313641387bd14.tar.gz |
Refactoring ext/intl (incompleted)
Diffstat (limited to 'ext/intl/intl_error.h')
-rw-r--r-- | ext/intl/intl_error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/intl_error.h b/ext/intl/intl_error.h index 4d8eb79327..06f33a4bd3 100644 --- a/ext/intl/intl_error.h +++ b/ext/intl/intl_error.h @@ -38,7 +38,7 @@ void intl_error_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ); void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ); UErrorCode intl_error_get_code( intl_error* err TSRMLS_DC ); -char* intl_error_get_message( intl_error* err TSRMLS_DC ); +zend_string* intl_error_get_message( intl_error* err TSRMLS_DC ); // Wrappers to synchonize object's and global error structures. void intl_errors_reset( intl_error* err TSRMLS_DC ); |