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
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-11-25 16:56:36 +0300
committerMichaël Zasso <targos@protonmail.com>2021-05-01 10:44:34 +0300
commit17f942ffc0330650a2b2eb77baabdc83dddc571d (patch)
tree4c2c44cc121ba64de491700d3ae55756cef2dec6 /tools
parent9269352e45159baf13712eee08694104adfe95fa (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')
-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) {