From 421c0b969791f2999c52c4444ba46ba19994a506 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 28 Sep 2000 06:00:10 +0000 Subject: [PATCH] ICU-535 Fixed some compiler warnings X-SVN-Rev: 2532 --- icu4c/source/common/ubidiimp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/common/ubidiimp.h b/icu4c/source/common/ubidiimp.h index b0fc310f4e4..d286167f016 100644 --- a/icu4c/source/common/ubidiimp.h +++ b/icu4c/source/common/ubidiimp.h @@ -111,7 +111,7 @@ typedef struct Run { } Run; /* in a Run, logicalStart will get this bit set if the run level is odd */ -#define INDEX_ODD_BIT (1L<<31) +#define INDEX_ODD_BIT (1UL<<31) #define MAKE_INDEX_ODD_PAIR(index, level) (index|((int32_t)level<<31)) #define ADD_ODD_BIT_FROM_LEVEL(x, level) ((x)|=((int32_t)level<<31))