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>
This commit is contained in:
Antoine du Hamel 2020-11-25 14:56:36 +01:00 committed by Rich Trott
parent 0ac2d0fafd
commit 299984561e

View File

@ -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) {