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 targos committed May 1, 2021
1 parent 9269352 commit 17f942f
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 17f942f

Please sign in to comment.