From 5935ccc11cd94ad0e3e0929292c942be6adbab1e Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 25 Nov 2020 14:56:36 +0100 Subject: [PATCH] tools: fix undeclared identifier FALSE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/36276 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- tools/icu/iculslocs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/icu/iculslocs.cc b/tools/icu/iculslocs.cc index e0de23774594f3..ad4fc37cb49aea 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) {