Skip to content

Commit 5ec1d5b

Browse files
committed
FALSE is not 1u8 but 0u8, of cource.
Signed-off-by: OGINO Masanori <[email protected]>
1 parent 436d9fa commit 5ec1d5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libextra/unicode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub mod icu {
1717
pub type UChar32 = char;
1818

1919
pub static TRUE : u8 = 1u8;
20-
pub static FALSE : u8 = 1u8;
20+
pub static FALSE : u8 = 0u8;
2121

2222
pub static UCHAR_ALPHABETIC : UProperty = 0;
2323
pub static UCHAR_BINARY_START : UProperty = 0; // = UCHAR_ALPHABETIC

0 commit comments

Comments
 (0)