diff options
author | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-14 19:51:50 +0300 |
---|---|---|
committer | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-15 01:24:11 +0300 |
commit | cfcd865e05c0d0525ea27d1e153a043b32a85138 (patch) | |
tree | 68d3b3b25271e8a4998505897a269ff7ce119b76 /contrib/libs/icu/io/ucln_io.cpp | |
parent | ccb790c507bd5e8ffe2ef9886ce5ee0a7ce22a15 (diff) | |
download | ydb-cfcd865e05c0d0525ea27d1e153a043b32a85138.tar.gz |
Update ICU to 73.2
Diffstat (limited to 'contrib/libs/icu/io/ucln_io.cpp')
-rw-r--r-- | contrib/libs/icu/io/ucln_io.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/icu/io/ucln_io.cpp b/contrib/libs/icu/io/ucln_io.cpp index c1307b5d97..e2ddb35870 100644 --- a/contrib/libs/icu/io/ucln_io.cpp +++ b/contrib/libs/icu/io/ucln_io.cpp @@ -36,7 +36,7 @@ static const char copyright[] = U_COPYRIGHT_STRING; static cleanupFunc *gCleanupFunctions[UCLN_IO_COUNT]; -static UBool U_CALLCONV io_cleanup(void) +static UBool U_CALLCONV io_cleanup() { int32_t libType = UCLN_IO_START; @@ -45,13 +45,13 @@ static UBool U_CALLCONV io_cleanup(void) if (gCleanupFunctions[libType]) { gCleanupFunctions[libType](); - gCleanupFunctions[libType] = NULL; + gCleanupFunctions[libType] = nullptr; } } #if !UCLN_NO_AUTO_CLEANUP && (defined(UCLN_AUTO_ATEXIT) || defined(UCLN_AUTO_LOCAL)) ucln_unRegisterAutomaticCleanup(); #endif - return TRUE; + return true; } void ucln_io_registerCleanup(ECleanupIOType type, |