Skip to content

Commit 31e21f7

Browse files
committed
Fix GH-11071: Revert "Fix [-Wundef] warning in INTL extension"
This reverts commit ea86865.
1 parent e8b8341 commit 31e21f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/intl/php_intl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ PHP_RSHUTDOWN_FUNCTION( intl )
286286
/* {{{ PHP_MINFO_FUNCTION */
287287
PHP_MINFO_FUNCTION( intl )
288288
{
289-
#ifndef UCONFIG_NO_FORMATTING
289+
#if !UCONFIG_NO_FORMATTING
290290
UErrorCode status = U_ZERO_ERROR;
291291
const char *tzdata_ver = NULL;
292292
#endif
@@ -297,7 +297,7 @@ PHP_MINFO_FUNCTION( intl )
297297
#ifdef U_ICU_DATA_VERSION
298298
php_info_print_table_row( 2, "ICU Data version", U_ICU_DATA_VERSION );
299299
#endif
300-
#ifndef UCONFIG_NO_FORMATTING
300+
#if !UCONFIG_NO_FORMATTING
301301
tzdata_ver = ucal_getTZDataVersion(&status);
302302
if (U_ZERO_ERROR == status) {
303303
php_info_print_table_row( 2, "ICU TZData version", tzdata_ver);

0 commit comments

Comments
 (0)