From: Stanislav Malyshev Date: Tue, 22 Jul 2008 20:25:51 +0000 (+0000) Subject: typofixes X-Git-Tag: php-5.3.0alpha1~207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07667caf131f1e10f1e440737515b56f5ffbcf91;p=php typofixes --- diff --git a/ext/intl/msgformat/msgformat.c b/ext/intl/msgformat/msgformat.c index 88c586b7d9..679beb81ad 100755 --- a/ext/intl/msgformat/msgformat.c +++ b/ext/intl/msgformat/msgformat.c @@ -26,7 +26,7 @@ #include "intl_convert.h" /* {{{ */ -static msgfmt_ctor(INTERNAL_FUNCTION_PARAMETERS) +static void msgfmt_ctor(INTERNAL_FUNCTION_PARAMETERS) { char* locale; char* pattern; diff --git a/ext/intl/msgformat/msgformat_data.h b/ext/intl/msgformat/msgformat_data.h index 6d7e8e1330..44001753b3 100755 --- a/ext/intl/msgformat/msgformat_data.h +++ b/ext/intl/msgformat/msgformat_data.h @@ -36,6 +36,6 @@ typedef struct { msgformat_data* msgformat_data_create( TSRMLS_D ); void msgformat_data_init( msgformat_data* mf_data TSRMLS_DC ); void msgformat_data_free( msgformat_data* mf_data TSRMLS_DC ); -int msfgotmat_fix_quotes(UChar **spattern, uint32_t *spattern_len, UErrorCode *ec); +int msgformat_fix_quotes(UChar **spattern, uint32_t *spattern_len, UErrorCode *ec); #endif // MSG_FORMAT_DATA_H