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 <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
  • 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
Original file line number Diff line number Diff line change
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.