summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-11-25 14:56:36 +0100
committerRich Trott <rtrott@gmail.com>2020-11-28 05:48:30 -0800
commit299984561eff45bddc5bb802e5b22d47277e5ca5 (patch)
tree2f0d740b63a26a1e569cc2368983fd87ea62049d /tools
parent0ac2d0fafd2ce9aa451802f8b53d7d809939c1da (diff)
downloadios-node-v8-299984561eff45bddc5bb802e5b22d47277e5ca5.tar.gz
ios-node-v8-299984561eff45bddc5bb802e5b22d47277e5ca5.tar.bz2
ios-node-v8-299984561eff45bddc5bb802e5b22d47277e5ca5.zip
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 e0de237745..ad4fc37cb4 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) {