From 299984561eff45bddc5bb802e5b22d47277e5ca5 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 25 Nov 2020 14:56:36 +0100 Subject: 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(-) (limited to 'tools/icu') 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) { -- cgit v1.2.3