diff options
Diffstat (limited to 'ext/intl/intl_error.c')
-rw-r--r-- | ext/intl/intl_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/intl_error.c b/ext/intl/intl_error.c index adbdd5afb8..a480c5ab11 100644 --- a/ext/intl/intl_error.c +++ b/ext/intl/intl_error.c @@ -135,7 +135,7 @@ zend_string * intl_error_get_message( intl_error* err ) zend_string *errMessage = 0; if( !err && !( err = intl_g_error_get( ) ) ) - return STR_EMPTY_ALLOC(); + return ZSTR_EMPTY_ALLOC(); uErrorName = u_errorName( err->code ); |