Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools/icu
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-11-25 16:56:36 +0300
committerRich Trott <rtrott@gmail.com>2020-11-28 16:48:30 +0300
commit299984561eff45bddc5bb802e5b22d47277e5ca5 (patch)
tree2f0d740b63a26a1e569cc2368983fd87ea62049d /tools/icu
parent0ac2d0fafd2ce9aa451802f8b53d7d809939c1da (diff)
tools: fix undeclared identifier FALSE
PR-URL: https://github.com/nodejs/node/pull/36276 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'tools/icu')
-rw-r--r--tools/icu/iculslocs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/icu/iculslocs.cc b/tools/icu/iculslocs.cc
index e0de2377459..ad4fc37cb49 100644
--- a/tools/icu/iculslocs.cc
+++ b/tools/icu/iculslocs.cc
@@ -150,7 +150,7 @@ int localeExists(const char* loc, UBool* exists) {
}
icu::LocalUResourceBundlePointer aResource(
ures_openDirect(packageName.data(), loc, &status));
- *exists = FALSE;
+ *exists = false;
if (U_SUCCESS(status)) {
*exists = true;
if (VERBOSE > 1) {