Skip to content

Commit 17f942f

Browse files
aduh95targos
authored andcommitted
tools: fix undeclared identifier FALSE
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]>
1 parent 9269352 commit 17f942f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/icu/iculslocs.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ int localeExists(const char* loc, UBool* exists) {
150150
}
151151
icu::LocalUResourceBundlePointer aResource(
152152
ures_openDirect(packageName.data(), loc, &status));
153-
*exists = FALSE;
153+
*exists = false;
154154
if (U_SUCCESS(status)) {
155155
*exists = true;
156156
if (VERBOSE > 1) {

0 commit comments

Comments
 (0)