Skip to content

Commit

Permalink
tools: fix undeclared identifier FALSE
Browse files Browse the repository at this point in the history
PR-URL: #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>
  • Loading branch information
aduh95 authored and danielleadams committed Dec 7, 2020
1 parent 3e5fcda commit 5935ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/icu/iculslocs.cc
Expand Up @@ -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) {
Expand Down

0 comments on commit 5935ccc

Please sign in to comment.